diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-06-24 23:15:52 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-06-24 23:15:52 +0000 |
commit | 1709e27af74b494c7316a8dc7678e764429b6dbb (patch) | |
tree | 91a1755e7302cf34797f84494ae046638ea53c3f /nscd | |
parent | e22206f336cee36e8ab77136d798828c723b4c8d (diff) | |
download | glibc-1709e27af74b494c7316a8dc7678e764429b6dbb.tar glibc-1709e27af74b494c7316a8dc7678e764429b6dbb.tar.gz glibc-1709e27af74b494c7316a8dc7678e764429b6dbb.tar.bz2 glibc-1709e27af74b494c7316a8dc7678e764429b6dbb.zip |
Update.
* nscd/connections.c (handle_request): Use correct type for optlen
variable.
Diffstat (limited to 'nscd')
-rw-r--r-- | nscd/connections.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nscd/connections.c b/nscd/connections.c index d40d987323..f0b3beeca9 100644 --- a/nscd/connections.c +++ b/nscd/connections.c @@ -324,7 +324,7 @@ cannot handle old request version %d; current version is %d"), else { struct ucred caller; - int optlen = sizeof (caller); + socklen_t optlen = sizeof (caller); if (getsockopt (fd, SOL_SOCKET, SO_PEERCRED, &caller, &optlen) < 0) { |