Fixed bug in my_uuid() that caused failures on hpux and ia64

This commit is contained in:
Michael Widenius 2010-01-04 20:31:26 +02:00
parent fa60971037
commit ce068186f6

View file

@ -108,7 +108,7 @@ void my_uuid_init(ulong seed1, ulong seed2)
*/
/* purecov: begin inspected */
my_rnd_init(&uuid_rand, (ulong) (seed2+ now/2), (ulong) (now+rand()));
for (i=0; i < sizeof(mac); i++)
for (i=0; i < array_elements(uuid_suffix) -2 ; i++)
mac[i]= (uchar)(my_rnd(&uuid_rand)*255);
/* purecov: end */
}