diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-30 06:52:59 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-30 06:52:59 +0000 |
commit | adcf0e4a330995739a4298abd33588e44bd329a1 (patch) | |
tree | 1673e40e79e85dc9912d0a8119664f88290dd656 /nscd/nscd.h | |
parent | 9d4d69b88b5e601029d86ce037552bceea931c0b (diff) | |
download | glibc-adcf0e4a330995739a4298abd33588e44bd329a1.tar glibc-adcf0e4a330995739a4298abd33588e44bd329a1.tar.gz glibc-adcf0e4a330995739a4298abd33588e44bd329a1.tar.bz2 glibc-adcf0e4a330995739a4298abd33588e44bd329a1.zip |
Update.
* iconv/iconv_prog.c (main): Handle input file name "-" correctly.
Recognize option -s, -c, and -l.
2000-04-20 Thorsten Kukuk <kukuk@suse.de>
* nscd/nscd.c: Start new session for nscd, drop privilegs
to configured user if requested and no -S parameter are used.
* nscd/nscd.conf: Add new option "server-user".
* nscd/nscd_conf.c: Add support for new "server-user" option.
* nscd/nscd.h: Add declaration for server_user variable.
Based on patch by Chris Wing <wingc@engin.umich.edu>
2000-04-29 Mark Kettenis <kettenis@gnu.org>
* sysdeps/unix/sysv/linux/i386/sigaction.c: Add comment explaining
that changing the __restore and __restore_rt signal return code
will break GDB.
2000-04-29 Mark Kettenis <kettenis@gnu.org>
* sysdeps/unix/sysv/linux/i386/sys/ucontext.h: Do not include
<sys/user.h>.
2000-04-29 Mark Kettenis <kettenis@gnu.org>
* conform/data/ucontext.h-data: Allow ss_* instead of SS_*.
2000-04-29 Ulrich Drepper <drepper@redhat.com>
Diffstat (limited to 'nscd/nscd.h')
-rw-r--r-- | nscd/nscd.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/nscd/nscd.h b/nscd/nscd.h index 36fd1b3002..ab93a9ac3e 100644 --- a/nscd/nscd.h +++ b/nscd/nscd.h @@ -1,4 +1,4 @@ -/* Copyright (c) 1998, 1999 Free Software Foundation, Inc. +/* Copyright (c) 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk <kukuk@suse.de>, 1998. @@ -96,6 +96,9 @@ extern int nthreads; extern int secure[lastdb]; extern int secure_in_use; /* Is one of the above 1 ? */ +/* User name to run server processes as */ +extern const char *server_user; + /* Prototypes for global functions. */ /* nscd.c */ |