diff options
author | Florian Weimer <fweimer@redhat.com> | 2020-07-06 20:20:44 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2020-07-07 20:20:22 +0200 |
commit | 94d9c76e4acc798894ea23d9ac049ce7ce995ec0 (patch) | |
tree | da1a95cda3e4bb11962c31f99b234fb16e56e64e /nss/Makefile | |
parent | afc3a2eb80617adaa8be75a7649c7ee2e1116a72 (diff) | |
download | glibc-94d9c76e4acc798894ea23d9ac049ce7ce995ec0.zip glibc-94d9c76e4acc798894ea23d9ac049ce7ce995ec0.tar.gz glibc-94d9c76e4acc798894ea23d9ac049ce7ce995ec0.tar.bz2 |
nss: Remove cryptographic key support from nss_files, nss_nis, nss_nisplus
The interface has hard-coded buffer sizes and is therefore tied to
DES. It also does not match current practice where different
services on the same host use different key material.
This change simplifies removal of the sunrpc code.
Diffstat (limited to 'nss/Makefile')
-rw-r--r-- | nss/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nss/Makefile b/nss/Makefile index 97bab5b..cbb7016 100644 --- a/nss/Makefile +++ b/nss/Makefile @@ -93,7 +93,8 @@ subdir-dirs = $(services:%=nss_%) vpath %.c $(subdir-dirs) ../locale/programs ../intl -libnss_files-routines := $(addprefix files-,$(databases)) \ +libnss_files-routines := $(addprefix files-, \ + $(filter-out key, $(databases))) \ files-initgroups files-init libnss_db-dbs := $(addprefix db-,\ |