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/nscd_conf.c | |
parent | 6c342d0b0b3e8766add65dff57416a67fe771673 (diff) | |
download | glibc-0a12bf88f1d0ff18f17ae94ade5dfce071bae0e0.tar glibc-0a12bf88f1d0ff18f17ae94ade5dfce071bae0e0.tar.gz glibc-0a12bf88f1d0ff18f17ae94ade5dfce071bae0e0.tar.bz2 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/nscd_conf.c')
-rw-r--r-- | nscd/nscd_conf.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |