summaryrefslogtreecommitdiffstats
path: root/src/UUID.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/UUID.cpp')
-rw-r--r--src/UUID.cpp6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/UUID.cpp b/src/UUID.cpp
index c04e585d7..9ed7dc492 100644
--- a/src/UUID.cpp
+++ b/src/UUID.cpp
@@ -270,10 +270,8 @@ cUUID cUUID::GenerateVersion3(const AString & a_Name)
// Insert version number
UUID.m_UUID[6] = (UUID.m_UUID[6] & 0x0f) | 0x30;
- /* Insert variant number
- Note that by using 1000 instead of 10xx we are losing 2 bits
- but this is needed for compatibility with the old string uuid generator */
- UUID.m_UUID[8] = (UUID.m_UUID[8] & 0x0f) | 0x80;
+ // Insert variant number
+ UUID.m_UUID[8] = (UUID.m_UUID[8] & 0x3f) | 0x80;
return UUID;
}