nss_compat: Use NSS_DECLARE_MODULE_FUNCTIONS
authorFlorian Weimer <fweimer@redhat.com>
Wed, 12 Feb 2020 10:47:13 +0000 (11:47 +0100)
committerFlorian Weimer <fweimer@redhat.com>
Thu, 13 Feb 2020 08:14:47 +0000 (09:14 +0100)
Reviewed-by: DJ Delorie <dj@redhat.com>
nss/nss_compat/compat-grp.c
nss/nss_compat/compat-initgroups.c
nss/nss_compat/compat-pwd.c
nss/nss_compat/compat-spwd.c

index 561511c..14aadc6 100644 (file)
@@ -27,6 +27,8 @@
 #include <libc-lock.h>
 #include <kernel-features.h>
 
+NSS_DECLARE_MODULE_FUNCTIONS (compat)
+
 static service_user *ni;
 static enum nss_status (*setgrent_impl) (int stayopen);
 static enum nss_status (*getgrnam_r_impl) (const char *name,
index d2a280d..67a4c10 100644 (file)
@@ -30,6 +30,8 @@
 #include <kernel-features.h>
 #include <scratch_buffer.h>
 
+NSS_DECLARE_MODULE_FUNCTIONS (compat)
+
 static service_user *ni;
 static enum nss_status (*initgroups_dyn_impl) (const char *, gid_t,
                                               long int *, long int *,
index b964e6f..dfb454f 100644 (file)
@@ -31,6 +31,8 @@
 #include "netgroup.h"
 #include "nisdomain.h"
 
+NSS_DECLARE_MODULE_FUNCTIONS (compat)
+
 static service_user *ni;
 static enum nss_status (*setpwent_impl) (int stayopen);
 static enum nss_status (*getpwnam_r_impl) (const char *name,
index 15f5b95..0a1fde1 100644 (file)
@@ -31,6 +31,8 @@
 #include "netgroup.h"
 #include "nisdomain.h"
 
+NSS_DECLARE_MODULE_FUNCTIONS (compat)
+
 static service_user *ni;
 static enum nss_status (*setspent_impl) (int stayopen);
 static enum nss_status (*getspnam_r_impl) (const char *name, struct spwd * sp,