From 04db693ea70beb100edf7872d2fd48c5064d7aee Mon Sep 17 00:00:00 2001 From: "Ralf S. Engelschall" Date: Mon, 14 Mar 2005 10:53:57 +0000 Subject: [PATCH] Fix incorrect random multicast MAC address creation. --- dlls/rpcrt4/rpcrt4_main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/rpcrt4/rpcrt4_main.c b/dlls/rpcrt4/rpcrt4_main.c index 8676688bce2..b20d866f2f0 100644 --- a/dlls/rpcrt4/rpcrt4_main.c +++ b/dlls/rpcrt4/rpcrt4_main.c @@ -349,7 +349,7 @@ static RPC_STATUS RPC_UuidGetNodeAddress(BYTE *address) address[i] = rand() & 0xff; } - address[0] |= 0x80; + address[0] |= 0x01; status = RPC_S_UUID_LOCAL_ONLY; } -- 2.11.4.GIT