about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2020-02-12 11:47:13 +0100
committerFlorian Weimer <fweimer@redhat.com>2020-02-12 15:27:42 +0100
commit36b6bee2407fd588d9bb543db0b6e69ecf4d09f9 (patch)
treeb3667f86cdd04b2f34dde0f8b9e8924f8e0ac2c0
parentd8af48b1d74b772a300868eabc0e4b457857da99 (diff)
downloadglibc-36b6bee2407fd588d9bb543db0b6e69ecf4d09f9.tar.gz
glibc-36b6bee2407fd588d9bb543db0b6e69ecf4d09f9.tar.xz
glibc-36b6bee2407fd588d9bb543db0b6e69ecf4d09f9.zip
nss_compat: Use NSS_DECLARE_MODULE_FUNCTIONS
-rw-r--r--nss/nss_compat/compat-grp.c2
-rw-r--r--nss/nss_compat/compat-initgroups.c2
-rw-r--r--nss/nss_compat/compat-pwd.c2
-rw-r--r--nss/nss_compat/compat-spwd.c2
4 files changed, 8 insertions, 0 deletions
diff --git a/nss/nss_compat/compat-grp.c b/nss/nss_compat/compat-grp.c
index 561511c91a..14aadc6f01 100644
--- a/nss/nss_compat/compat-grp.c
+++ b/nss/nss_compat/compat-grp.c
@@ -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,
diff --git a/nss/nss_compat/compat-initgroups.c b/nss/nss_compat/compat-initgroups.c
index d2a280d9c3..67a4c100f6 100644
--- a/nss/nss_compat/compat-initgroups.c
+++ b/nss/nss_compat/compat-initgroups.c
@@ -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 *,
diff --git a/nss/nss_compat/compat-pwd.c b/nss/nss_compat/compat-pwd.c
index b964e6f644..dfb454f777 100644
--- a/nss/nss_compat/compat-pwd.c
+++ b/nss/nss_compat/compat-pwd.c
@@ -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,
diff --git a/nss/nss_compat/compat-spwd.c b/nss/nss_compat/compat-spwd.c
index 15f5b95bb0..0a1fde1ea4 100644
--- a/nss/nss_compat/compat-spwd.c
+++ b/nss/nss_compat/compat-spwd.c
@@ -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,