diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-04-22 19:52:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-04-22 19:52:59 +0000 |
commit | 4c5dd2a2071c60eaa2d36f8a000fb90a5a5a5813 (patch) | |
tree | c649760d18479be11f0d3f74aafffcfe906405e4 /nscd/nscd_gethst_r.c | |
parent | dc2f6455a41f635a6388c2ca4435ecc0d89251fd (diff) | |
download | glibc-4c5dd2a2071c60eaa2d36f8a000fb90a5a5a5813.tar.gz glibc-4c5dd2a2071c60eaa2d36f8a000fb90a5a5a5813.tar.xz glibc-4c5dd2a2071c60eaa2d36f8a000fb90a5a5a5813.zip |
Update.
2003-04-22 Ulrich Drepper <drepper@redhat.com> * nscd/nscd-client.h: Add declaration for __nscd_open_socket. * nscd/nscd_gethst_r.c (__nscd_open_socket): Renamed from open_socket. Not static anymore. (nscd_gethst_r): Use __nscd_open_socket. * nscd/nscd_getgr_r.c (open_socket): Removed. (nscd_getgr_r): Use __nscd_open_socket. * nscd/nscd_getpw_r.c (open_socket): Removed. (nscd_getpw_r): Use __nscd_open_socket. * nscd/nscd.c (main): Change type of fdn to long int and use strtol. * nscd/connections.c (handle_request): Add cast to avoid warning.
Diffstat (limited to 'nscd/nscd_gethst_r.c')
-rw-r--r-- | nscd/nscd_gethst_r.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nscd/nscd_gethst_r.c b/nscd/nscd_gethst_r.c index bd0be682d8..9488c53d0f 100644 --- a/nscd/nscd_gethst_r.c +++ b/nscd/nscd_gethst_r.c @@ -86,8 +86,8 @@ __nscd_gethostbyaddr_r (const void *addr, socklen_t len, int type, /* Create a socket connected to a name. */ -static int -open_socket (void) +int +__nscd_open_socket (void) { struct sockaddr_un addr; int sock; @@ -119,7 +119,7 @@ nscd_gethst_r (const char *key, size_t keylen, request_type type, struct hostent *resultbuf, char *buffer, size_t buflen, int *h_errnop) { - int sock = open_socket (); + int sock = __nscd_open_socket (); hst_response_header hst_resp; request_header req; ssize_t nbytes; |