diff options
Diffstat (limited to 'nss')
-rw-r--r-- | nss/nss_files/files-netgrp.c | 1 | ||||
-rw-r--r-- | nss/nss_files/files-parse.c | 10 |
2 files changed, 9 insertions, 2 deletions
diff --git a/nss/nss_files/files-netgrp.c b/nss/nss_files/files-netgrp.c index e207691996..8bdc68bd14 100644 --- a/nss/nss_files/files-netgrp.c +++ b/nss/nss_files/files-netgrp.c @@ -274,6 +274,7 @@ _nss_netgroup_parseline (char **cursor, struct __netgrent *result, return status; } +libnss_files_hidden_def (_nss_netgroup_parseline) enum nss_status diff --git a/nss/nss_files/files-parse.c b/nss/nss_files/files-parse.c index 7d1e2326d3..3ba37c8941 100644 --- a/nss/nss_files/files-parse.c +++ b/nss/nss_files/files-parse.c @@ -1,5 +1,5 @@ /* Common code for file-based database parsers in nss_files module. - Copyright (C) 1996-2000, 2003 Free Software Foundation, Inc. + Copyright (C) 1996-2000, 2003, 2004 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -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) libc_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 |