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-client.h | |
parent | dc2f6455a41f635a6388c2ca4435ecc0d89251fd (diff) | |
download | glibc-4c5dd2a2071c60eaa2d36f8a000fb90a5a5a5813.zip glibc-4c5dd2a2071c60eaa2d36f8a000fb90a5a5a5813.tar.gz glibc-4c5dd2a2071c60eaa2d36f8a000fb90a5a5a5813.tar.bz2 |
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-client.h')
-rw-r--r-- | nscd/nscd-client.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/nscd/nscd-client.h b/nscd/nscd-client.h index 8e00df5..be3bc2f 100644 --- a/nscd/nscd-client.h +++ b/nscd/nscd-client.h @@ -1,4 +1,4 @@ -/* Copyright (c) 1998, 1999, 2000 Free Software Foundation, Inc. +/* Copyright (c) 1998, 1999, 2000, 2003 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk <kukuk@suse.de>, 1998. @@ -110,4 +110,7 @@ typedef struct } hst_response_header; +/* Open socket connection to nscd server. */ +extern int __nscd_open_socket (void) attribute_hidden; + #endif /* nscd.h */ |