From c2e131128be262e38f086465f3561c2faeaaef78 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Sun, 15 Dec 2002 23:23:24 +0000 Subject: * sysdeps/unix/sysv/linux/readv.c (do_readv): Use prototype defn. * sysdeps/unix/sysv/linux/wait.c: Don't include or here, no need for it. * sysdeps/unix/sysv/linux/waitpid.c: Likewise. * sysdeps/unix/sysv/linux/i386/fcntl.c (do_fcntl): Take ARG as void * parameter, not varargs parameter. * sysdeps/generic/sysdep-cancel.h (LIBC_CANCEL_RESET): Evaluate the argument so it's not an unused variable. * resolv/resolv.h (__p_key_syms, __p_cert_syms, __p_class_syms, __p_type_syms, __p_rcode_syms): Remove decls, never really intended for users. * resolv/Versions (libresolv: GLIBC_2.3.2): New set, add __p_rcode. 2002-12-15 Art Haas * nscd/connections.c: C99 initializer conversion. * nscd/grpcache.c: Same. * nscd/hstcache.c: Same. * nscd/pwdcache.c: Same. --- nscd/hstcache.c | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) (limited to 'nscd/hstcache.c') diff --git a/nscd/hstcache.c b/nscd/hstcache.c index dd8fc59f61..67f4e50f97 100644 --- a/nscd/hstcache.c +++ b/nscd/hstcache.c @@ -41,42 +41,42 @@ /* This is the standard reply in case the service is disabled. */ static const hst_response_header disabled = { - version: NSCD_VERSION, - found: -1, - h_name_len: 0, - h_aliases_cnt: 0, - h_addrtype: -1, - h_length: -1, - h_addr_list_cnt: 0, - error: NETDB_INTERNAL + .version = NSCD_VERSION, + .found = -1, + .h_name_len = 0, + .h_aliases_cnt = 0, + .h_addrtype = -1, + .h_length = -1, + .h_addr_list_cnt = 0, + .error = NETDB_INTERNAL }; /* This is the struct describing how to write this record. */ const struct iovec hst_iov_disabled = { - iov_base: (void *) &disabled, - iov_len: sizeof (disabled) + .iov_base = (void *) &disabled, + .iov_len = sizeof (disabled) }; /* This is the standard reply in case we haven't found the dataset. */ static const hst_response_header notfound = { - version: NSCD_VERSION, - found: 0, - h_name_len: 0, - h_aliases_cnt: 0, - h_addrtype: -1, - h_length: -1, - h_addr_list_cnt: 0, - error: HOST_NOT_FOUND + .version = NSCD_VERSION, + .found = 0, + .h_name_len = 0, + .h_aliases_cnt = 0, + .h_addrtype = -1, + .h_length = -1, + .h_addr_list_cnt = 0, + .error = HOST_NOT_FOUND }; /* This is the struct describing how to write this record. */ static const struct iovec iov_notfound = { - iov_base: (void *) ¬found, - iov_len: sizeof (notfound) + .iov_base = (void *) ¬found, + .iov_len = sizeof (notfound) }; -- cgit 1.4.1