diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-09-28 13:21:08 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-09-28 13:23:00 -0700 |
commit | d3b9fd9e8dc00a5431408f27f0756e8e3923efd1 (patch) | |
tree | 034577b7524ffdc38d376a75186c1ddb22e58e34 /nss | |
parent | 084b8fabd28ab541efbe5ce7ef6008107a4b86ea (diff) | |
download | glibc-d3b9fd9e8dc00a5431408f27f0756e8e3923efd1.tar.gz |
Avoid unused static function warning in nsswitch.c.
Diffstat (limited to 'nss')
-rw-r--r-- | nss/nsswitch.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nss/nsswitch.c b/nss/nsswitch.c index 750cd02ab0..1379553abe 100644 --- a/nss/nsswitch.c +++ b/nss/nsswitch.c @@ -786,6 +786,7 @@ nss_getline (char *line) } +#if !defined DO_STATIC_NSS || defined SHARED static service_library * internal_function nss_new_service (name_database *database, const char *name) @@ -810,6 +811,7 @@ nss_new_service (name_database *database, const char *name) return *currentp; } +#endif #if defined SHARED && defined USE_NSCD |