summaryrefslogtreecommitdiff
path: root/nss
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2004-10-26 02:30:36 +0000
committerRoland McGrath <roland@gnu.org>2004-10-26 02:30:36 +0000
commit4463a2eed73d72227f298f128ee5274b6a2e94d5 (patch)
treec180c550fd6d52222cc10dfbcea66c180d7dd43c /nss
parent8f8bd267e9291c4a5a3625e81b8089fe5a6be902 (diff)
either libc_hidden_def or libnss_files_hidden_def, not hidden_def.
This file is also compiled into libnss_hesiod by #include.
Diffstat (limited to 'nss')
-rw-r--r--nss/nss_files/files-parse.c8
1 files changed, 7 insertions, 1 deletions
diff --git a/nss/nss_files/files-parse.c b/nss/nss_files/files-parse.c
index 21f689d0f1..3ba37c8941 100644
--- a/nss/nss_files/files-parse.c
+++ b/nss/nss_files/files-parse.c
@@ -73,7 +73,13 @@ struct parser_data
/* Export the line parser function so it can be used in nss_db. */
# define parser_stclass /* Global */
# define parse_line CONCAT(_nss_files_parse_,ENTNAME)
-# define nss_files_parse_hidden_def(name) libnss_files_hidden_def (name)
+# ifdef IS_IN_libc
+/* We are defining one of the functions that actually lives in libc
+ because it is used to implement fget*ent and suchlike. */
+# define nss_files_parse_hidden_def(name) libc_hidden_def (name)
+# else
+# define nss_files_parse_hidden_def(name) libnss_files_hidden_def (name)
+# endif
#endif