diff options
author | Ulrich Drepper <drepper@redhat.com> | 2008-03-04 01:54:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2008-03-04 01:54:09 +0000 |
commit | 27c377dd04f40e4d0a7e11daad059939e94d9367 (patch) | |
tree | 25141dbca8580fbb71b210108fa57457830278d8 /nscd/nscd.h | |
parent | 0f749099e991ef47514bd635225a89a9c0250b80 (diff) | |
download | glibc-27c377dd04f40e4d0a7e11daad059939e94d9367.zip glibc-27c377dd04f40e4d0a7e11daad059939e94d9367.tar.gz glibc-27c377dd04f40e4d0a7e11daad059939e94d9367.tar.bz2 |
[BZ #5818]
* nscd/connections.c (dbs): Add initializers for .suggested_module.
(verify_persistent_db): Remove one unnecessary test and add a new one
for bad configuration.
(nscd_init): Improve error reported when persistent database cannot
be reused.
* nscd/nscd.h (DEFAULT_SUGGESTED_MODULE): Define.
* nscd/nscd_conf.c (nscd_parse_file): Provide default values for
.suggested_module and .max_db_size and case config file says the
values are zero.
* nscd/nscd_helper.c (get_mapping): Fail if hash table module is zero.
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 cd6fe15..ec2d945 100644 --- a/nscd/nscd.h +++ b/nscd/nscd.h @@ -1,4 +1,4 @@ -/* Copyright (c) 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 +/* Copyright (c) 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Thorsten Kukuk <kukuk@suse.de>, 1998. @@ -120,6 +120,9 @@ struct database_dyn /* Number of bytes of data we initially reserve for each hash table bucket. */ #define DEFAULT_DATASIZE_PER_BUCKET 1024 +/* Default module of hash table. */ +#define DEFAULT_SUGGESTED_MODULE 211 + /* Number of seconds between two cache pruning runs if we do not have better information when it is really needed. */ |