From a9368c34d70cef91ca59b09941f496df11d6b146 Mon Sep 17 00:00:00 2001 From: Florian Weimer Date: Wed, 15 May 2019 13:51:35 +0200 Subject: nss: Turn __nss_database_lookup into a compatibility symbol The function uses the internal service_user type, so it is not really usable from the outside of glibc. Rename the function to __nss_database_lookup2 for internal use, and change __nss_database_lookup to always indicate failure to the caller. __nss_next already was a compatibility symbol. The new implementation always fails and no longer calls __nss_next2. unscd, the alternative nscd implementation, does not use __nss_database_lookup, so it is not affected by this change. --- grp/initgroups.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'grp') diff --git a/grp/initgroups.c b/grp/initgroups.c index b4c8633ea3..a22f33c934 100644 --- a/grp/initgroups.c +++ b/grp/initgroups.c @@ -79,12 +79,12 @@ internal_getgrouplist (const char *user, gid_t group, long int *size, if (__nss_initgroups_database == NULL) { - if (__nss_database_lookup ("initgroups", NULL, "", - &__nss_initgroups_database) < 0) + if (__nss_database_lookup2 ("initgroups", NULL, "", + &__nss_initgroups_database) < 0) { if (__nss_group_database == NULL) - no_more = __nss_database_lookup ("group", NULL, DEFAULT_CONFIG, - &__nss_group_database); + no_more = __nss_database_lookup2 ("group", NULL, DEFAULT_CONFIG, + &__nss_group_database); __nss_initgroups_database = __nss_group_database; } -- cgit v1.2.3-65-gdbad