diff options
author | Arthur de Jong <arthur@arthurdejong.org> | 2010-10-16 20:20:47 +0000 |
---|---|---|
committer | Arthur de Jong <arthur@arthurdejong.org> | 2010-10-16 20:20:47 +0000 |
commit | 9e98ce0bf5d07b6f783ed5fda5492846416bd439 (patch) | |
tree | b5427d76e8c17099239ed183ea49f31e0b56c560 | |
parent | 5210f19c530a950bf0617d0cdfe2633c646a169d (diff) |
fix log message
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd@1287 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r-- | nslcd/nslcd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nslcd/nslcd.c b/nslcd/nslcd.c index f8bae99..4b0ecb7 100644 --- a/nslcd/nslcd.c +++ b/nslcd/nslcd.c @@ -304,7 +304,7 @@ static int create_socket(void) /* close the file descriptor on exit */ if (fcntl(sock,F_SETFD,FD_CLOEXEC)<0) { - log_log(LOG_ERR,"fctnl(F_SETFL,O_NONBLOCK) failed: %s",strerror(errno)); + log_log(LOG_ERR,"fctnl(F_SETFL,FD_CLOEXEC) failed: %s",strerror(errno)); if (close(sock)) log_log(LOG_WARNING,"problem closing socket: %s",strerror(errno)); exit(EXIT_FAILURE); |