mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
ITS#895: gai_strerror fix
This commit is contained in:
parent
0ac6171299
commit
04e2da58ed
1 changed files with 1 additions and 1 deletions
|
|
@ -240,7 +240,7 @@ static int slap_get_listener_addresses(
|
|||
hints.ai_family = AF_UNSPEC;
|
||||
if (err = getaddrinfo(host, serv, &hints, &res)) {
|
||||
Debug( LDAP_DEBUG_ANY, "daemon: getaddrinfo failed: %s\n",
|
||||
gai_strerror(err), 0, 0);
|
||||
AC_GAI_STRERROR(err), 0, 0);
|
||||
return -1;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue