diff options
author | Roland McGrath <roland@hack.frob.com> | 2012-09-28 13:48:14 -0700 |
---|---|---|
committer | Roland McGrath <roland@hack.frob.com> | 2012-09-28 13:48:14 -0700 |
commit | b1c608fe20672fe645cd171e89195b4a00914db1 (patch) | |
tree | f06df241a14111b1d1995cef23d9f7946ef744a9 /nss | |
parent | 766ea9371a0fac8909873c1a9198c24d5780d500 (diff) | |
download | glibc-b1c608fe20672fe645cd171e89195b4a00914db1.zip glibc-b1c608fe20672fe645cd171e89195b4a00914db1.tar.gz glibc-b1c608fe20672fe645cd171e89195b4a00914db1.tar.bz2 |
Avoid more warnings in nsswitch.c
Diffstat (limited to 'nss')
-rw-r--r-- | nss/nsswitch.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/nss/nsswitch.c b/nss/nsswitch.c index 1379553..c0e3e1e 100644 --- a/nss/nsswitch.c +++ b/nss/nsswitch.c @@ -46,8 +46,10 @@ static name_database *nss_parse_file (const char *fname) internal_function; static name_database_entry *nss_getline (char *line) internal_function; static service_user *nss_parse_service_list (const char *line) internal_function; +#if !defined DO_STATIC_NSS || defined SHARED static service_library *nss_new_service (name_database *database, const char *name) internal_function; +#endif /* Declare external database variables. */ @@ -433,7 +435,9 @@ __nss_lookup_function (service_user *ni, const char *fct_name) known_function *known = malloc (sizeof *known); if (! known) { +#if !defined DO_STATIC_NSS || defined SHARED remove_from_tree: +#endif /* Oops. We can't instantiate this node properly. Remove it from the tree. */ __tdelete (&fct_name, &ni->known, &known_compare); |