mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-25 00:59:45 -05:00
Add descr # to epoll_ctl failed error message
This commit is contained in:
parent
f2b4a50e75
commit
c961673d9e
1 changed files with 3 additions and 3 deletions
|
|
@ -180,8 +180,8 @@ static struct slap_daemon {
|
|||
slap_daemon.sd_nfds++; \
|
||||
} else { \
|
||||
Debug( LDAP_DEBUG_ANY, \
|
||||
"daemon: epoll_ctl ADD failed, errno %d, shutting down\n", \
|
||||
errno, 0, 0 ); \
|
||||
"daemon: epoll_ctl(ADD,fd=%d) failed, errno=%d, shutting down\n", \
|
||||
s, errno, 0 ); \
|
||||
slapd_shutdown = 2; \
|
||||
} \
|
||||
} while (0)
|
||||
|
|
@ -690,7 +690,7 @@ static int slap_get_listener_addresses(
|
|||
snprintf(serv, sizeof serv, "%d", port);
|
||||
|
||||
if ( (err = getaddrinfo(host, serv, &hints, &res)) ) {
|
||||
Debug( LDAP_DEBUG_ANY, "daemon: getaddrinfo failed: %s\n",
|
||||
Debug( LDAP_DEBUG_ANY, "daemon: getaddrinfo() failed: %s\n",
|
||||
AC_GAI_STRERROR(err), 0, 0);
|
||||
return -1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue