Apply Christian's recommendation:

s/can't get unique/no more available/
This commit is contained in:
nekral-guest 2008-01-23 22:31:38 +00:00
parent 934ac07b06
commit 926aeec06a
2 changed files with 7 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2008-01-23 Nicolas François <nicolas.francois@centraliens.net>
* src/useradd.c: Strings improvement s/can't get unique/no more
available/.
2008-01-23 Nicolas François <nicolas.francois@centraliens.net>
* NEWS, src/usermod.c: Check that the new fields set with -u, -s,

View File

@ -856,7 +856,7 @@ static void find_new_uid (void)
break;
}
if (user_id == uid_max) {
fprintf (stderr, _("%s: can't get unique UID (run out of UIDs)\n"), Prog);
fprintf (stderr, _("%s: can't get unique UID (no more available UIDs)\n"), Prog);
fail_exit (E_UID_IN_USE);
}
}
@ -903,7 +903,7 @@ static void find_new_gid (void)
}
if (user_gid == gid_max) {
fprintf (stderr,
_("%s: can't get unique GID (run out of GIDs)\n"),
_("%s: can't get unique GID (no more available GIDs)\n"),
Prog);
fail_exit (4);
}