diff options
author | DJ Delorie <dj@redhat.com> | 2020-12-09 21:46:30 -0500 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2020-12-14 12:19:43 -0500 |
commit | d2e929a907914e233d001d1dd5e3143e84fa69e0 (patch) | |
tree | e0fc726fa628727fee23a86a6053f9107502c84b /grp/Makefile | |
parent | 2ee7711bdd7de9dd30073b223ce29d5cd50320f6 (diff) | |
download | glibc-d2e929a907914e233d001d1dd5e3143e84fa69e0.tar glibc-d2e929a907914e233d001d1dd5e3143e84fa69e0.tar.gz glibc-d2e929a907914e233d001d1dd5e3143e84fa69e0.tar.bz2 glibc-d2e929a907914e233d001d1dd5e3143e84fa69e0.zip |
nsswitch: handle missing actions properly
Some internal functions need to know if a database has a nonzero
list of actions; success getting the database does not guarantee
that. Add checks for such as needed.
Skip the ":" in each nsswitch.conf line so as not to add a dummy
action libnss_:.so
See also https://bugzilla.redhat.com/show_bug.cgi?id=1906066
Reviewed-by: Siddhesh Poyarekar <siddhesh@sourceware.org>
Diffstat (limited to 'grp/Makefile')
-rw-r--r-- | grp/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/grp/Makefile b/grp/Makefile index 9d1dae91db..20683f649d 100644 --- a/grp/Makefile +++ b/grp/Makefile @@ -31,6 +31,10 @@ routines := fgetgrent initgroups setgroups \ tests := testgrp tst-putgrent +tests-container = \ + tst-initgroups1 \ + tst-initgroups2 + ifeq (yes,$(build-shared)) test-srcs := tst_fgetgrent ifeq ($(run-built-tests),yes) |