From 31808116a1e9e43c0a2ef675c66030db3bdc7fa9 Mon Sep 17 00:00:00 2001 From: Theodore Ts'o Date: Sat, 3 Apr 2004 10:48:25 -0500 Subject: [PATCH] Change the use of the term "internal format" to "binary representation" in the uuid_parse and uuid_unparse man pages. --- lib/uuid/ChangeLog | 3 +++ lib/uuid/uuid_parse.3.in | 6 ++---- lib/uuid/uuid_unparse.3.in | 4 ++-- 3 files changed, 7 insertions(+), 6 deletions(-) diff --git a/lib/uuid/ChangeLog b/lib/uuid/ChangeLog index c7a7c33..da17786 100644 --- a/lib/uuid/ChangeLog +++ b/lib/uuid/ChangeLog @@ -1,5 +1,8 @@ 2004-04-03 Theodore Ts'o + * 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. diff --git a/lib/uuid/uuid_parse.3.in b/lib/uuid/uuid_parse.3.in index d0b646d..580052a 100644 --- a/lib/uuid/uuid_parse.3.in +++ b/lib/uuid/uuid_parse.3.in @@ -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 @@ -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'). diff --git a/lib/uuid/uuid_unparse.3.in b/lib/uuid/uuid_unparse.3.in index 80aa9a8..eda2eac 100644 --- a/lib/uuid/uuid_unparse.3.in +++ b/lib/uuid/uuid_unparse.3.in @@ -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 @@ -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 . -- 1.8.3.1