]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
Change the use of the term "internal format" to "binary representation"
authorTheodore Ts'o <tytso@mit.edu>
Sat, 3 Apr 2004 15:48:25 +0000 (10:48 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Sat, 3 Apr 2004 15:48:25 +0000 (10:48 -0500)
in the uuid_parse and uuid_unparse man pages.

lib/uuid/ChangeLog
lib/uuid/uuid_parse.3.in
lib/uuid/uuid_unparse.3.in

index c7a7c336e5912c31b630d177ed2b38c524bbbce5..da177862c7042026f1ad81e6534c9d8a37401adf 100644 (file)
@@ -1,5 +1,8 @@
 2004-04-03  Theodore Ts'o  <tytso@mit.edu>
 
+       * uuid_parse.3.in, uuid_unparse.3.in: Change the use of the term
+               "internal format" to "binary representation".
+
        * gen_uuid.c, pack.c, unpack.c, uuid_time.c, uuidP.h,
                uuid_types.h.in: Use ANSI C99 types if stdint.h exists.
 
index d0b646d29d0773e425d8890572d2b41e0bb6c61e..580052a8737b30715491bed7fa40975b31f4a6d9 100644 (file)
@@ -7,7 +7,7 @@
 .\" Created  Wed Mar 10 17:42:12 1999, Andreas Dilger
 .TH UUID_PARSE 3 "@E2FSPROGS_MONTH@ @E2FSPROGS_YEAR@" "E2fsprogs version @E2FSPROGS_VERSION@"
 .SH NAME
-uuid_parse \- convert an input UUID string into the libuuid internal format
+uuid_parse \- convert an input UUID string into binary representation
 .SH SYNOPSIS
 .nf
 .B #include <uuid/uuid.h>
@@ -19,9 +19,7 @@ The
 .B uuid_parse
 function converts the UUID string given by
 .I in
-into the internal
-.B uuid_t
-format.  The input UUID is a string of the form
+into the binary representation.  The input UUID is a string of the form
 1b4e28ba\-2fa1\-11d2\-883f\-b9a761bde3fb (in
 .BR printf (3)
 format "%08x\-%04x\-%04x\-%04x\-%012x", 36 bytes plus the trailing '\\0').
index 80aa9a81be42962a9e5a2828e685a3b12c2e0b78..eda2eac7e97f0b008c81ee1e9e89c5dfdd9f6b94 100644 (file)
@@ -7,7 +7,7 @@
 .\" Created  Wed Mar 10 17:42:12 1999, Andreas Dilger
 .TH UUID_UNPARSE 3 "@E2FSPROGS_MONTH@ @E2FSPROGS_YEAR@" "E2fsprogs version @E2FSPROGS_VERSION@"
 .SH NAME
-uuid_unparse \- output UUID variable in string format
+uuid_unparse \- convert an UUID from binary representation to a string
 .SH SYNOPSIS
 .nf
 .B #include <uuid/uuid.h>
@@ -21,7 +21,7 @@ The
 .B uuid_unparse
 function converts the supplied UUID
 .I uu
-from the internal binary format into a 36\-byte string (plus tailing '\\0')
+from the binary representation into a 36\-byte string (plus tailing '\\0')
 of the form 1b4e28ba\-2fa1\-11d2\-883f\-b9a76 and stores this value in the
 character string pointed to by
 .IR out .