Apply Christian's recommendation:
s/can't get unique/no more available/
This commit is contained in:
parent
934ac07b06
commit
926aeec06a
@ -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,
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user