diff options
author | Ulrich Drepper <drepper@redhat.com> | 2010-08-11 07:25:02 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2010-08-11 07:25:02 -0700 |
commit | c3e2f19bb995a0281f4cc56ad81bd67a5404dde6 (patch) | |
tree | 5bdbd8e1cb8119cd07cb48c60ef4f383c6b2d875 /nss/nsswitch.h | |
parent | f15ce4d8dc139523fe0c273580b604b2453acba6 (diff) | |
download | glibc-c3e2f19bb995a0281f4cc56ad81bd67a5404dde6.tar glibc-c3e2f19bb995a0281f4cc56ad81bd67a5404dde6.tar.gz glibc-c3e2f19bb995a0281f4cc56ad81bd67a5404dde6.tar.bz2 glibc-c3e2f19bb995a0281f4cc56ad81bd67a5404dde6.zip |
Add self-contained test for NSS.
While at it fix interaction between __nss_configure_lookup and nscd.
Otherwise the test fails if nscd is runnung.
Diffstat (limited to 'nss/nsswitch.h')
-rw-r--r-- | nss/nsswitch.h | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/nss/nsswitch.h b/nss/nsswitch.h index b80edef651..ae5657e889 100644 --- a/nss/nsswitch.h +++ b/nss/nsswitch.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996-1999,2001,2002,2003,2004,2007 +/* Copyright (C) 1996-1999,2001,2002,2003,2004,2007,2010 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -28,6 +28,7 @@ #include <resolv.h> #include <search.h> #include <dlfcn.h> +#include <stdbool.h> /* Actions performed after lookup finished. */ typedef enum @@ -96,6 +97,19 @@ typedef struct name_database } name_database; +/* Indices into DATABASES in nsswitch.c and __NSS_DATABASE_CUSTOM. */ +enum + { +#define DEFINE_DATABASE(arg) NSS_DBSIDX_##arg, +#include "databases.def" +#undef DEFINE_DATABASE + NSS_DBSIDX_max + }; + +/* Flags whether custom rules for database is set. */ +extern bool __nss_database_custom[NSS_DBSIDX_max]; + + /* Interface functions for NSS. */ /* Get the data structure representing the specified database. |