about summary refs log tree commit diff
path: root/nss
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2021-06-29 12:06:40 +0200
committerFlorian Weimer <fweimer@redhat.com>2021-06-29 12:06:40 +0200
commit5e1ce61e3e71fb7ffe53f58fe96e67cb15f94854 (patch)
tree22b9fbfa64aeed799aaadcfcc1e3ccb3d0db9f65 /nss
parent259a17cc98058d2576511201f85d28cb5d9de2a2 (diff)
downloadglibc-5e1ce61e3e71fb7ffe53f58fe96e67cb15f94854.tar.gz
glibc-5e1ce61e3e71fb7ffe53f58fe96e67cb15f94854.tar.xz
glibc-5e1ce61e3e71fb7ffe53f58fe96e67cb15f94854.zip
nss: Fix NSS_DECLARE_MODULE_FUNCTIONS handling of _nss_*_endnetgrent
The old version had an additional underscore, making the declaration
ineffective.
Diffstat (limited to 'nss')
-rw-r--r--nss/nss.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/nss/nss.h b/nss/nss.h
index ae213f9a6c..c6d62adc0f 100644
--- a/nss/nss.h
+++ b/nss/nss.h
@@ -196,7 +196,7 @@ typedef enum nss_status nss_setspent (int);
   extern nss_endgrent _nss_##module##_endgrent;                          \
   extern nss_endhostent _nss_##module##_endhostent;                      \
   extern nss_endnetent _nss_##module##_endnetent;                        \
-  extern nss_endnetgrent _nss_##module##__endnetgrent;                   \
+  extern nss_endnetgrent _nss_##module##_endnetgrent;                    \
   extern nss_endprotoent _nss_##module##_endprotoent;                    \
   extern nss_endpwent _nss_##module##_endpwent;                          \
   extern nss_endrpcent _nss_##module##_endrpcent;                        \