Fix some typos.

This commit is contained in:
Jelmer Vernooij
2014-04-25 02:36:25 +02:00
parent 80a514219f
commit 70e43e9808
28 changed files with 47 additions and 47 deletions

View File

@@ -458,7 +458,7 @@ main(int argc, char **argv)
for (j = 0; j < i; j++) {
char *p = strchr(newenv[j], '=');
if (p == NULL)
errx(1, "enviroment '%s' missing '='", newenv[j]);
errx(1, "environment '%s' missing '='", newenv[j]);
*p++ = 0;
esetenv (newenv[j], p, 1);
}