ldap/servers/slapd/uniqueid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit c89726733ac7ad3e5278a1d4303ae45745e13953 Author: Rich Megginson rmeggins@redhat.com Date: Tue Nov 15 20:10:00 2011 -0700
fix member variable name error in slapi_uniqueIDFormat
diff --git a/ldap/servers/slapd/uniqueid.c b/ldap/servers/slapd/uniqueid.c index a65bbc6..7764465 100644 --- a/ldap/servers/slapd/uniqueid.c +++ b/ldap/servers/slapd/uniqueid.c @@ -181,8 +181,8 @@ int slapi_uniqueIDFormat (const Slapi_UniqueID *uId, char **buff){ *ptr++ = '-'; ptr = slapi_u8_to_hex(((uint8_t *)&uuid_tmp.time_mid)[0], ptr, 0); ptr = slapi_u8_to_hex(((uint8_t *)&uuid_tmp.time_mid)[1], ptr, 0); - ptr = slapi_u8_to_hex(((uint8_t *)&uuid_tmp.time_high_and_version)[0], ptr, 0); - ptr = slapi_u8_to_hex(((uint8_t *)&uuid_tmp.time_high_and_version)[1], ptr, 0); + ptr = slapi_u8_to_hex(((uint8_t *)&uuid_tmp.time_hi_and_version)[0], ptr, 0); + ptr = slapi_u8_to_hex(((uint8_t *)&uuid_tmp.time_hi_and_version)[1], ptr, 0); *ptr++ = '-'; ptr = slapi_u8_to_hex(uuid_tmp.clock_seq_hi_and_reserved, ptr, 0); ptr = slapi_u8_to_hex(uuid_tmp.clock_seq_low, ptr, 0);
389-commits@lists.fedoraproject.org