diff options
author | Andreas Jaeger <aj@suse.de> | 2000-12-09 18:33:58 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-12-09 18:33:58 +0000 |
commit | 0a12bf88f1d0ff18f17ae94ade5dfce071bae0e0 (patch) | |
tree | 9ce5f646e01bd6cfd16ecd741a86e98ea268deb7 /nscd | |
parent | 6c342d0b0b3e8766add65dff57416a67fe771673 (diff) | |
download | glibc-0a12bf88f1d0ff18f17ae94ade5dfce071bae0e0.tar.gz glibc-0a12bf88f1d0ff18f17ae94ade5dfce071bae0e0.tar.xz glibc-0a12bf88f1d0ff18f17ae94ade5dfce071bae0e0.zip |
Update.
2000-12-09 Andreas Jaeger <aj@suse.de> * sysdeps/unix/sysv/linux/mips/sigaction.c: New file. * sysdeps/unix/sysv/linux/mips/sys/acct.h: Removed, we can use the generic version. Patches by Hiroyuki Machida <machida@sm.sony.co.jp>. * locale/programs/ld-collate.c (handle_ellipsis): Fix format string. * locale/programs/ld-ctype.c (charclass_symbolic_ellipsis): Fix format string. * nscd/hstcache.c (addhstbyname): Add cast to avoid warning. * nscd/connections.c (handle_request): Likewise. * nscd/pwdcache.c (addpwbyname): Likewise. * nscd/grpcache.c (addgrbyname): Likewise. * nscd/nscd_conf.c (nscd_parse_file): Remove extra argument.
Diffstat (limited to 'nscd')
-rw-r--r-- | nscd/connections.c | 4 | ||||
-rw-r--r-- | nscd/grpcache.c | 2 | ||||
-rw-r--r-- | nscd/hstcache.c | 2 | ||||
-rw-r--r-- | nscd/nscd_conf.c | 2 | ||||
-rw-r--r-- | nscd/pwdcache.c | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/nscd/connections.c b/nscd/connections.c index 121f15064b..7ba36bbed9 100644 --- a/nscd/connections.c +++ b/nscd/connections.c @@ -245,7 +245,7 @@ cannot handle old request version %d; current version is %d"), key, buf, sizeof (buf))); } else - dbg_log ("\t%s (%s)", serv2str[req->type], key); + dbg_log ("\t%s (%s)", serv2str[req->type], (char *)key); } /* Is this service enabled? */ @@ -293,7 +293,7 @@ cannot handle old request version %d; current version is %d"), else if (debug_level > 0) { if (req->type == INVALIDATE) - dbg_log ("\t%s (%s)", serv2str[req->type], key); + dbg_log ("\t%s (%s)", serv2str[req->type], (char *)key); else dbg_log ("\t%s", serv2str[req->type]); } diff --git a/nscd/grpcache.c b/nscd/grpcache.c index b1634a1009..d6b1395540 100644 --- a/nscd/grpcache.c +++ b/nscd/grpcache.c @@ -211,7 +211,7 @@ addgrbyname (struct database *db, int fd, request_header *req, uid_t oldeuid = 0; if (debug_level > 0) - dbg_log (_("Haven't found \"%s\" in group cache!"), key); + dbg_log (_("Haven't found \"%s\" in group cache!"), (char *)key); if (secure[grpdb]) { diff --git a/nscd/hstcache.c b/nscd/hstcache.c index e8444d825f..ee38c3d653 100644 --- a/nscd/hstcache.c +++ b/nscd/hstcache.c @@ -296,7 +296,7 @@ addhstbyname (struct database *db, int fd, request_header *req, uid_t oldeuid = 0; if (debug_level > 0) - dbg_log (_("Haven't found \"%s\" in hosts cache!"), key); + dbg_log (_("Haven't found \"%s\" in hosts cache!"), (char *)key); if (secure[hstdb]) { diff --git a/nscd/nscd_conf.c b/nscd/nscd_conf.c index 9b8d75ce23..742f2b760d 100644 --- a/nscd/nscd_conf.c +++ b/nscd/nscd_conf.c @@ -179,7 +179,7 @@ nscd_parse_file (const char *fname, struct database dbs[lastdb]) else if (strcmp (entry, "server-user") == 0) { if (!arg1) - dbg_log (_("Must specify user name for server-user option"), arg1); + dbg_log (_("Must specify user name for server-user option")); else server_user = strdup (arg1); } diff --git a/nscd/pwdcache.c b/nscd/pwdcache.c index 7e35bef1cc..85a3fd529e 100644 --- a/nscd/pwdcache.c +++ b/nscd/pwdcache.c @@ -207,7 +207,7 @@ addpwbyname (struct database *db, int fd, request_header *req, uid_t oldeuid = 0; if (debug_level > 0) - dbg_log (_("Haven't found \"%s\" in password cache!"), key); + dbg_log (_("Haven't found \"%s\" in password cache!"), (char *)key); if (secure[pwddb]) { |