Typo: enviroment -> environment.

This commit is contained in:
Jelmer Vernooij
2015-04-25 17:37:17 +00:00
parent f1fca8be14
commit 9eb31585c0

View File

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