diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-13 21:10:56 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-13 21:10:56 +0200 |
commit | b22974092d09a61fdb371b28837175bb616e78cf (patch) | |
tree | f8c79d98833f256948b47fd3a64240c7c5f0e775 /nss/getXXent_r.c | |
parent | 1b0bfc6946b460bcebe9db19a015f2cac711f7f5 (diff) | |
download | glibc-b22974092d09a61fdb371b28837175bb616e78cf.tar glibc-b22974092d09a61fdb371b28837175bb616e78cf.tar.gz glibc-b22974092d09a61fdb371b28837175bb616e78cf.tar.bz2 glibc-b22974092d09a61fdb371b28837175bb616e78cf.zip |
NSS: Do not use internal_function for functions with hidden aliases
Such functions are called across DSO boundaries and should not
use a non-standard ABI.
Diffstat (limited to 'nss/getXXent_r.c')
-rw-r--r-- | nss/getXXent_r.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/nss/getXXent_r.c b/nss/getXXent_r.c index 2710c1cd51..66c38a5245 100644 --- a/nss/getXXent_r.c +++ b/nss/getXXent_r.c @@ -113,8 +113,7 @@ __libc_lock_define_initialized (static, lock) /* The lookup function for the first entry of this service. */ extern int DB_LOOKUP_FCT (service_user **nip, const char *name, - const char *name2, void **fctp) - internal_function; + const char *name2, void **fctp); libc_hidden_proto (DB_LOOKUP_FCT) void |