diff options
author | Florian Weimer <fweimer@redhat.com> | 2020-02-20 13:20:32 +0100 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2020-12-04 17:15:44 -0500 |
commit | fa78feca47fdc226b46e7f6fea4c08c10fccd182 (patch) | |
tree | 9f6d87a83d586c1c7ea5fdb3962702792b14fac1 /nss/Makefile | |
parent | <nss_action.h>: New abstraction for combining NSS modules and NSS actions (diff) | |
download | glibc-fa78feca47fdc226b46e7f6fea4c08c10fccd182.tar.gz glibc-fa78feca47fdc226b46e7f6fea4c08c10fccd182.tar.bz2 glibc-fa78feca47fdc226b46e7f6fea4c08c10fccd182.zip |
nss: Implement <nss_database.h>
This code manages the mappings of the available databases in NSS
(i.e. passwd, hosts, netgroup, etc) with the actions that should
be taken to do a query on those databases.
This is the main API between query functions scattered throughout
glibc and the underlying code (actions, modules, etc).
Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Diffstat (limited to 'nss/Makefile')
-rw-r--r-- | nss/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nss/Makefile b/nss/Makefile index f3e555066b..ccd1a6ae4f 100644 --- a/nss/Makefile +++ b/nss/Makefile @@ -31,7 +31,7 @@ routines = nsswitch getnssent getnssent_r digits_dots \ compat-lookup nss_hash nss_files_fopen \ nss_readline nss_parse_line_result \ nss_fgetent_r nss_module nss_action \ - nss_action_parse + nss_action_parse nss_database # These are the databases that go through nss dispatch. # Caution: if you add a database here, you must add its real name |