]> err.no Git - util-linux/commitdiff
uuidd: spell the plural of "UUID" consistently as "UUIDs"
authorBenno Schulenberg <bensberg@justemail.net>
Thu, 10 Jun 2010 12:04:26 +0000 (14:04 +0200)
committerKarel Zak <kzak@redhat.com>
Mon, 14 Jun 2010 09:13:51 +0000 (11:13 +0200)
Signed-off-by: Benno Schulenberg <bensberg@justemail.net>
misc-utils/uuidd.8
misc-utils/uuidd.c
misc-utils/uuidgen.1
shlibs/uuid/man/uuid_generate.3
shlibs/uuid/src/compare.c
shlibs/uuid/src/pack.c

index 33e650fe4a76b1d2df1cf33218a85828bad52633..9c3b54d645d4342fda53cebf5bcd35f6bba6b262 100644 (file)
@@ -27,9 +27,9 @@ uuidd \- UUID generation daemon
 The
 .B uuidd
 daemon is used by the UUID library to generate
-universally unique identifiers (UUIDs), especially time-based UUID's
+universally unique identifiers (UUIDs), especially time-based UUIDs
 in a secure and guaranteed-unique fashion, even in the face of large
-numbers of threads trying to grab UUID's running on different CPU's.
+numbers of threads trying to grab UUIDs running on different CPUs.
 .SH OPTIONS
 .TP
 .B \-d
@@ -44,7 +44,7 @@ If a currently uuidd daemon is running, kill it.
 When issuing a test request to a running uuidd, request a bulk response
 of
 .I number
-UUID's.
+UUIDs.
 .TP
 .BI \-p  " pidfile"
 Specify the pathname where the pid file should be written.  By default,
index 74bab693808be7fab3cec84770d170a4d4e3b128..a6d2f696a0fdcf63fac82636d1e128ca717ceb43 100644 (file)
@@ -412,7 +412,7 @@ static void server_loop(const char *socket_path, const char *pidfile_path,
                        uuid__generate_random((unsigned char *) reply_buf +
                                              sizeof(num), &num);
                        if (debug) {
-                               printf(_("Generated %d UUID's:\n"), num);
+                               printf(_("Generated %d UUIDs:\n"), num);
                                for (i=0, cp=reply_buf+sizeof(num);
                                     i < num; i++, cp+=16) {
                                        uuid_unparse((unsigned char *)cp, str);
@@ -531,9 +531,9 @@ int main(int argc, char **argv)
 
                        uuid_unparse((unsigned char *) buf, str);
 
-                       printf(_("%s and subsequent %d UUID's\n"), str, num);
+                       printf(_("%s and subsequent %d UUIDs\n"), str, num);
                } else {
-                       printf(_("List of UUID's:\n"));
+                       printf(_("List of UUIDs:\n"));
                        cp = buf + 4;
                        if (ret != (int) (sizeof(num) + num*sizeof(uu)))
                                goto unexpected_size;
index 18e33de73e18eaa581e9efdca9bf6930f99901ae..32c98f1d19f7cc892b6cd6373b9c27d9f7f8280b 100644 (file)
@@ -22,9 +22,9 @@ all UUIDs created on the local system,
 and among UUIDs created on other systems in the past
 and in the future.
 .PP
-There are two types of UUID's which
+There are two types of UUIDs which
 .B uuidgen
-can generate: time-based UUID's and random-based UUID's.  By
+can generate: time-based UUIDs and random-based UUIDs.  By
 default
 .B uuidgen
 will generate a random-based UUID if a high-quality random number
index 11f48ffdc5c02b8458f2fbaec47c8687bc4b6dd2..e1b8143f96208d4c0c19400853199237c777d10b 100644 (file)
@@ -59,7 +59,7 @@ a high-quality random number generator (i.e.,
 .IR /dev/urandom )
 is not available, in which case a pseudo-random
 generator will be subsituted.  Note that the use of a pseudo-random
-generator may compromise the uniqueness of UUID's
+generator may compromise the uniqueness of UUIDs
 generated in this fashion.
 .sp
 The
index f28a72678cf9cf115f3f76b73889d8d8541af601..8f3437a2d7840ac93af38740e9ecf27fdb9acdd4 100644 (file)
@@ -1,7 +1,7 @@
 /*
- * compare.c --- compare whether or not two UUID's are the same
+ * compare.c --- compare whether or not two UUIDs are the same
  *
- * Returns 0 if the two UUID's are different, and 1 if they are the same.
+ * Returns 0 if the two UUIDs are different, and 1 if they are the same.
  *
  * Copyright (C) 1996, 1997 Theodore Ts'o.
  *
index 097516d2e2f8d5742ce18a847c951495499c0e03..6e12476690f3760fbd17f7d388d67011442cb8fa 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Internal routine for packing UUID's
+ * Internal routine for packing UUIDs
  *
  * Copyright (C) 1996, 1997 Theodore Ts'o.
  *