Return NULL for wildcard values in getnetgrent from nscd (BZ #16759)
commitdd3022d75e6fb8957843d6d84257a5d8457822d5
authorSiddhesh Poyarekar <siddhesh@redhat.com>
Thu, 27 Mar 2014 14:19:51 +0000 (27 19:49 +0530)
committerSiddhesh Poyarekar <siddhesh@redhat.com>
Thu, 27 Mar 2014 14:19:51 +0000 (27 19:49 +0530)
tree2a80ab93d6c2b5451fcf470539c70fc5b139a64f
parentea7d8b95e2fcb81f68b04ed7787a3dbda023991a
Return NULL for wildcard values in getnetgrent from nscd (BZ #16759)

getnetgrent is supposed to return NULL for values that are wildcards
in the (host, user, domain) triplet.  This works correctly with nscd
disabled, but with it enabled, it returns a blank ("") instead of a
NULL.  This is easily seen with the output of `getent netgroup foonet`
for a netgroup foonet defined as follows in /etc/netgroup:

    foonet (,foo,)

The output with nscd disabled is:

    foonet ( ,foo,)

while with nscd enabled, it is:

    foonet (,foo,)

The extra space with nscd disabled is due to the fact that `getent
netgroup` adds it if the return value from getnetgrent is NULL for
either host or user.
ChangeLog
NEWS
inet/getnetgrent_r.c