mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-09 08:23:35 -05:00
ITS#9478 fix breakage from ITS#9348
This commit is contained in:
parent
22fd5a8924
commit
b57d317fd9
2 changed files with 5 additions and 4 deletions
|
|
@ -928,7 +928,7 @@ nssov_db_open(
|
|||
Debug( LDAP_DEBUG_ANY,"nssov: bind() to "NSLCD_SOCKET" failed: %s",
|
||||
AC_STRERROR_R(saved_errno, ebuf, sizeof(ebuf)) );
|
||||
if (close(sock)) {
|
||||
saved_errno = errno
|
||||
saved_errno = errno;
|
||||
Debug( LDAP_DEBUG_ANY,"nssov: problem closing socket: %s",
|
||||
AC_STRERROR_R(saved_errno, ebuf, sizeof(ebuf)) );
|
||||
}
|
||||
|
|
@ -941,7 +941,7 @@ nssov_db_open(
|
|||
Debug( LDAP_DEBUG_ANY,"nssov: fcntl(F_SETFL,O_NONBLOCK) failed: %s",
|
||||
AC_STRERROR_R(saved_errno, ebuf, sizeof(ebuf)) );
|
||||
if (close(sock)) {
|
||||
saved_errno = errno
|
||||
saved_errno = errno;
|
||||
Debug( LDAP_DEBUG_ANY,"nssov: problem closing socket: %s",
|
||||
AC_STRERROR_R(saved_errno, ebuf, sizeof(ebuf)) );
|
||||
}
|
||||
|
|
@ -958,7 +958,7 @@ nssov_db_open(
|
|||
Debug( LDAP_DEBUG_ANY,"nssov: chmod(0666) failed: %s",
|
||||
AC_STRERROR_R(saved_errno, ebuf, sizeof(ebuf)) );
|
||||
if (close(sock)) {
|
||||
saved_errno = errno
|
||||
saved_errno = errno;
|
||||
Debug( LDAP_DEBUG_ANY,"nssov: problem closing socket: %s",
|
||||
AC_STRERROR_R(saved_errno, ebuf, sizeof(ebuf)) );
|
||||
}
|
||||
|
|
@ -971,7 +971,7 @@ nssov_db_open(
|
|||
Debug( LDAP_DEBUG_ANY,"nssov: listen() failed: %s",
|
||||
AC_STRERROR_R(saved_errno, ebuf, sizeof(ebuf)) );
|
||||
if (close(sock)) {
|
||||
saved_errno = errno
|
||||
saved_errno = errno;
|
||||
Debug( LDAP_DEBUG_ANY,"nssov: problem closing socket: %s",
|
||||
AC_STRERROR_R(saved_errno, ebuf, sizeof(ebuf)) );
|
||||
}
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@
|
|||
#endif
|
||||
|
||||
#include <stdio.h>
|
||||
#include <errno.h>
|
||||
|
||||
#include "nslcd.h"
|
||||
#include "nslcd-prot.h"
|
||||
|
|
|
|||
Loading…
Reference in a new issue