Fix incorrect random multicast MAC address creation.

This commit is contained in:
Ralf S. Engelschall 2005-03-14 10:53:57 +00:00 committed by Alexandre Julliard
parent 10f1067e0b
commit 04db693ea7
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}