Check-in Number:
|
5350 | |
Date: |
2006-Jan-12 20:59:36 (local)
2006-Jan-12 19:59:36 (UTC) |
User: | rse |
Branch: | |
Comment: |
Fixed documentation of uuid_make() function. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/uuid/ChangeLog 1.98 -> 1.99
--- ChangeLog 2006/01/07 08:11:40 1.98
+++ ChangeLog 2006/01/12 19:59:36 1.99
@@ -11,7 +11,10 @@
This is a list of all changes to OSSP uuid.
For a more brief summary please have a look at the NEWS file.
- Changes between 1.3.2 and 1.3.3 (06-Dec-2005 to xx-Jan-2006)
+ Changes between 1.3.2 and 1.3.3 (06-Dec-2005 to 12-Jan-2006)
+
+ o Fixed documentation of uuid_make() function.
+ [Ralf S. Engelschall]
o Upgrade build environment to GNU libtool 1.5.22
[Ralf S. Engelschall]
|
|
ossp-pkg/uuid/uuid.pod 1.31 -> 1.32
--- uuid.pod 2005/09/02 14:00:00 1.31
+++ uuid.pod 2006/01/12 19:59:36 1.32
@@ -328,12 +328,10 @@
If I<mode> contains the C<UUID_MAKE_V3> or C<UUID_MAKE_V5> bit, a DCE
1.1 variant UUID of version 3 or 5 is generated and two additional
-C<NUL>-terminated string arguments of type "C<const char *>" are
-expected: first a namespace, given as an internally pre-defined id
-(currently known are ids "C<DNS>", "C<URL>", "C<OID>", and "C<X500>")
-or a UUID in string representation. Second, a name string of arbitrary
-length. The UUID is generated out of the 128-bit MD5 or 160-bit SHA-1
-from the concatenated octet stream of namespace UUID and name string.
+arguments are expected: first, a namespace UUID object (C<uuid_t *>).
+Second, a name string of arbitrary length (C<const char *>). The UUID is
+generated out of the 128-bit MD5 or 160-bit SHA-1 from the concatenated
+octet stream of namespace UUID and name string.
If I<mode> contains the C<UUID_MAKE_V4> bit, a DCE 1.1 variant UUID
of version 4 is generated. The UUID is generated out of 128-bit random
|
|