mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Fix multicast bit
This commit is contained in:
parent
00d898e7f3
commit
c6e4254b8f
1 changed files with 1 additions and 1 deletions
|
|
@ -169,7 +169,7 @@ lutil_eaddr( void )
|
|||
if (memcmp(eaddr, zero, sizeof(eaddr)) == 0) {
|
||||
/* XXX - who knows? */
|
||||
lutil_entropy( eaddr, sizeof(eaddr) );
|
||||
eaddr[0] |= 0x80; /* turn it into a multicast address */
|
||||
eaddr[0] |= 0x01; /* turn it into a multicast address */
|
||||
}
|
||||
|
||||
return eaddr;
|
||||
|
|
|
|||
Loading…
Reference in a new issue