mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-12 10:54:48 +08:00
ITS#9743 init client socket port
also silence meaningless warning
This commit is contained in:
parent
45720734ea
commit
69727ebbc8
@ -263,7 +263,7 @@ ldap_pvt_is_socket_ready(LDAP *ld, int s)
|
||||
== AC_SOCKET_ERROR )
|
||||
{
|
||||
/* XXX: needs to be replace with ber_stream_read() */
|
||||
(void)read(s, &ch, 1);
|
||||
(void)!read(s, &ch, 1);
|
||||
TRACE;
|
||||
return -1;
|
||||
}
|
||||
@ -697,6 +697,7 @@ ldap_connect_to_host(LDAP *ld, Sockbuf *sb,
|
||||
struct sockaddr_in6 ip6addr;
|
||||
char bind_addr[INET6_ADDRSTRLEN];
|
||||
ip6addr.sin6_family = AF_INET6;
|
||||
ip6addr.sin6_port = 0;
|
||||
ip6addr.sin6_addr = ld->ld_options.ldo_local_ip_addrs.ip6_addr;
|
||||
inet_ntop( AF_INET6,
|
||||
&(ip6addr.sin6_addr),
|
||||
@ -725,6 +726,7 @@ ldap_connect_to_host(LDAP *ld, Sockbuf *sb,
|
||||
struct sockaddr_in ip4addr;
|
||||
char bind_addr[INET_ADDRSTRLEN];
|
||||
ip4addr.sin_family = AF_INET;
|
||||
ip4addr.sin_port = 0;
|
||||
ip4addr.sin_addr = ld->ld_options.ldo_local_ip_addrs.ip4_addr;
|
||||
inet_ntop( AF_INET,
|
||||
&(ip4addr.sin_addr),
|
||||
|
Loading…
Reference in New Issue
Block a user