diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-06-29 12:06:40 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-06-29 12:06:40 +0200 |
commit | 5e1ce61e3e71fb7ffe53f58fe96e67cb15f94854 (patch) | |
tree | 22b9fbfa64aeed799aaadcfcc1e3ccb3d0db9f65 /nss | |
parent | 259a17cc98058d2576511201f85d28cb5d9de2a2 (diff) | |
download | glibc-5e1ce61e3e71fb7ffe53f58fe96e67cb15f94854.zip glibc-5e1ce61e3e71fb7ffe53f58fe96e67cb15f94854.tar.gz glibc-5e1ce61e3e71fb7ffe53f58fe96e67cb15f94854.tar.bz2 |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; \ |