diff --git a/ChangeLog b/ChangeLog index 6fbb6bc1..bea547bb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2011-10-18 Nicolas François + + * src/newusers.c: Fix typo. + * src/useradd.c: Likewise. + 2011-10-15 Nicolas François * man/login.defs.d/LOGIN_STRING.xml: Fix typo. diff --git a/src/newusers.c b/src/newusers.c index f9e84999..c4a59000 100644 --- a/src/newusers.c +++ b/src/newusers.c @@ -891,7 +891,7 @@ int main (int argc, char **argv) if (nfields != 6) { fprintf (stderr, _("%s: line %d: invalid line\n"), Prog, line); - errors++ + errors++; continue; } diff --git a/src/useradd.c b/src/useradd.c index 8bd6f758..8d412af1 100644 --- a/src/useradd.c +++ b/src/useradd.c @@ -699,7 +699,7 @@ static void usage (int status) " %s -D [options]\n" "\n" "Options:\n"), - Prog); + Prog, Prog, Prog); (void) fputs (_(" -b, --base-dir BASE_DIR base directory for the home directory of the\n" " new account\n"), usageout); (void) fputs (_(" -c, --comment COMMENT GECOS field of the new account\n"), usageout);