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 /grp/grp-merge.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 'grp/grp-merge.c')
-rw-r--r-- | grp/grp-merge.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/grp/grp-merge.c b/grp/grp-merge.c index 035e7a604b..df7260857d 100644 --- a/grp/grp-merge.c +++ b/grp/grp-merge.c @@ -36,7 +36,6 @@ }) int -internal_function __copy_grp (const struct group srcgrp, const size_t buflen, struct group *destgrp, char *destbuf, char **endptr) { @@ -117,7 +116,6 @@ libc_hidden_def (__copy_grp) /* Check that the name, GID and passwd fields match, then copy in the gr_mem array. */ int -internal_function __merge_grp (struct group *savedgrp, char *savedbuf, char *savedend, size_t buflen, struct group *mergegrp, char *mergebuf) { |