[Pkg-shadow-commits] r1736 - in upstream/trunk: . src

nekral-guest at alioth.debian.org nekral-guest at alioth.debian.org
Wed Jan 23 22:31:38 UTC 2008


Author: nekral-guest
Date: 2008-01-23 22:31:38 +0000 (Wed, 23 Jan 2008)
New Revision: 1736

Modified:
   upstream/trunk/ChangeLog
   upstream/trunk/src/useradd.c
Log:
Apply Christian's recommendation:
s/can't get unique/no more available/


Modified: upstream/trunk/ChangeLog
===================================================================
--- upstream/trunk/ChangeLog	2008-01-23 21:50:27 UTC (rev 1735)
+++ upstream/trunk/ChangeLog	2008-01-23 22:31:38 UTC (rev 1736)
@@ -1,5 +1,10 @@
 2008-01-23  Nicolas François  <nicolas.francois at centraliens.net>
 
+	* src/useradd.c: Strings improvement s/can't get unique/no more
+	available/.
+
+2008-01-23  Nicolas François  <nicolas.francois at centraliens.net>
+
 	* NEWS, src/usermod.c: Check that the new fields set with -u, -s,
 	-l, -g, -f, -e, -d, and -c differ from the old ones. If a
 	requested new value is equal to the old one, no changes will

Modified: upstream/trunk/src/useradd.c
===================================================================
--- upstream/trunk/src/useradd.c	2008-01-23 21:50:27 UTC (rev 1735)
+++ upstream/trunk/src/useradd.c	2008-01-23 22:31:38 UTC (rev 1736)
@@ -856,7 +856,7 @@
 				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 @@
 		}
 		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);
 		}




More information about the Pkg-shadow-commits mailing list