RPM Package Manager, CVS Repository
http://rpm5.org/cvs/
____________________________________________________________________________
Server: rpm5.org Name: Ralf S. Engelschall
Root: /v/rpm/cvs Email: rse@rpm5.org
Module: rpm lua Date: 01-Feb-2008 14:52:10
Branch: HEAD Handle: 2008020113520901
Modified files:
lua/local luuid.c
rpm/rpmio rpmuuid.c
Log:
Ops, typo and copy & paste error
Summary:
Revision Changes Path
1.2 +1 -1 lua/local/luuid.c
2.2 +1 -1 rpm/rpmio/rpmuuid.c
____________________________________________________________________________
patch -p0 <<'@@ .'
Index: lua/local/luuid.c
============================================================================
$ cvs diff -u -r1.1 -r1.2 luuid.c
--- lua/local/luuid.c 10 Jan 2008 20:49:36 -0000 1.1
+++ lua/local/luuid.c 1 Feb 2008 13:52:10 -0000 1.2
@@ -71,7 +71,7 @@
else if (version == 4)
rc = uuid_make(uuid, UUID_MAKE_V4);
else if (version == 5)
- rc = uuid_make(uuid, UUID_MAKE_V3, uuid_ns, data);
+ rc = uuid_make(uuid, UUID_MAKE_V5, uuid_ns, data);
if (rc != UUID_RC_OK) {
uuid_destroy(uuid);
if (uuid_ns != NULL)
@@ .
patch -p0 <<'@@ .'
Index: rpm/rpmio/rpmuuid.c
============================================================================
$ cvs diff -u -r2.1 -r2.2 rpmuuid.c
--- rpm/rpmio/rpmuuid.c 1 Feb 2008 13:48:47 -0000 2.1
+++ rpm/rpmio/rpmuuid.c 1 Feb 2008 13:52:09 -0000 2.2
@@ -62,7 +62,7 @@
else if (version == 4)
rc = uuid_make(uuid, UUID_MAKE_V4);
else if (version == 5)
- rc = uuid_make(uuid, UUID_MAKE_V3, uuid_ns, data);
+ rc = uuid_make(uuid, UUID_MAKE_V5, uuid_ns, data);
if (rc != UUID_RC_OK) {
uuid_destroy(uuid);
if (uuid_ns != NULL)
@@ .
Received on Fri Feb 1 14:52:10 2008