mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-06 10:46:21 +08:00
Fix uninitialized sl_is_udp
This commit is contained in:
parent
498420dc26
commit
1e8fd55cfb
@ -663,9 +663,6 @@ static int slap_open_listener(
|
|||||||
return -1;
|
return -1;
|
||||||
#endif
|
#endif
|
||||||
} else {
|
} else {
|
||||||
#ifdef LDAP_CONNECTIONLESS
|
|
||||||
l.sl_is_udp = ( tmp == LDAP_PROTO_UDP );
|
|
||||||
#endif
|
|
||||||
if( lud->lud_host == NULL || lud->lud_host[0] == '\0'
|
if( lud->lud_host == NULL || lud->lud_host[0] == '\0'
|
||||||
|| strcmp(lud->lud_host, "*") == 0 )
|
|| strcmp(lud->lud_host, "*") == 0 )
|
||||||
{
|
{
|
||||||
@ -674,6 +671,9 @@ static int slap_open_listener(
|
|||||||
err = slap_get_listener_addresses(lud->lud_host, port, &sal);
|
err = slap_get_listener_addresses(lud->lud_host, port, &sal);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#ifdef LDAP_CONNECTIONLESS
|
||||||
|
l.sl_is_udp = ( tmp == LDAP_PROTO_UDP );
|
||||||
|
#endif
|
||||||
|
|
||||||
#if defined(LDAP_PF_LOCAL) || defined(SLAP_X_LISTENER_MOD)
|
#if defined(LDAP_PF_LOCAL) || defined(SLAP_X_LISTENER_MOD)
|
||||||
if ( lud->lud_exts ) {
|
if ( lud->lud_exts ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user