From fb4fb791ddbd85e1b414e56d6853bf2e88649de9 Mon Sep 17 00:00:00 2001 From: bolero-MURAKAMI Date: Mon, 15 Apr 2013 19:13:14 +0900 Subject: [PATCH] fix uuid::md5_name_generator --- sprout/uuid/md5_name_generator.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sprout/uuid/md5_name_generator.hpp b/sprout/uuid/md5_name_generator.hpp index bd3a873c..a44dad2b 100644 --- a/sprout/uuid/md5_name_generator.hpp +++ b/sprout/uuid/md5_name_generator.hpp @@ -28,7 +28,7 @@ namespace sprout { value[3], value[4], value[5], - static_cast((value[6] & 0x5F) | 0x50), + static_cast((value[6] & 0x3F) | 0x30), value[7], static_cast((value[8] & 0xBF) | 0x80), value[9],