Check-in Number:
|
4415 | |
Date: |
2004-Feb-13 15:32:37 (local)
2004-Feb-13 14:32:37 (UTC) |
User: | rse |
Branch: | |
Comment: |
Replaced overlooked references to old
uuid_{unpack,pack,parse,format,dump}() functions with their
current uuid_{import,export}() replacements.
Submitted by: <fuyuki@nigredo.org> |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/uuid/ChangeLog 1.38 -> 1.39
--- ChangeLog 2004/02/13 14:29:32 1.38
+++ ChangeLog 2004/02/13 14:32:37 1.39
@@ -13,6 +13,11 @@
Changes between 0.9.5 and 0.9.6 (06-Feb-2004 to 13-Feb-2004)
+ o Replaced overlooked references to old
+ uuid_{unpack,pack,parse,format,dump}() functions with their
+ current uuid_{import,export}() replacements.
+ [Ralf S. Engelschall, <fuyuki@nigredo.org>]
+
o Fixed "uuid -h" command.
[Ralf S. Engelschall, <fuyuki@nigredo.org>]
|
|
ossp-pkg/uuid/uuid.pod 1.12 -> 1.13
--- uuid.pod 2004/01/19 12:15:05 1.12
+++ uuid.pod 2004/02/13 14:32:37 1.13
@@ -75,8 +75,9 @@
An example of a UUID binary representation is the octet stream "C<0xEC
0xB9 0xF3 0x5F 0x44 0x2A 0x11 0xD8 0x8A 0x24 0x00 0x90 0x27 0x2F 0xF7
-0x25>". The binary representation format is exactly what the B<OSSP uuid>
-API functions B<uuid_pack>() and B<uuid_unpack>() deal with.
+0x25>". The binary representation format is exactly what the B<OSSP
+uuid> API functions B<uuid_import>() and B<uuid_export>() deal with
+under C<UUID_FMT_BIN>.
=head2 UUID ASCII String Representation
@@ -104,8 +105,8 @@
An example of a UUID string representation is the ASCII string
"C<54531d28-402b-11d8-af12-0002a5094c23>". The string representation
-format is exactly what the B<OSSP uuid> API functions B<uuid_parse>() and
-B<uuid_format>() deal with.
+format is exactly what the B<OSSP uuid> API functions B<uuid_import>()
+and B<uuid_export>() deal with under C<UUID_FMT_STR>.
=head2 UUID Variants and Versions
|
|