]> granicus.if.org Git - shadow/commitdiff
Apply Christian's recommendation:
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Wed, 23 Jan 2008 22:31:38 +0000 (22:31 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Wed, 23 Jan 2008 22:31:38 +0000 (22:31 +0000)
s/can't get unique/no more available/

ChangeLog
src/useradd.c

index 88e79b49ace5bd7f9d856461c02c4a266e6ab0e7..725e726183a5c94ffd3a5997d4b8630906c76c97 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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,
index a1509ada53cfaa0a6f0dc83bfc92c8b316554d30..04f37e246c7fa582e66a4d581919e4299d9d5ac3 100644 (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);
                }