summaryrefslogtreecommitdiff
path: root/libc/nss/nsswitch.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/nss/nsswitch.c')
-rw-r--r--libc/nss/nsswitch.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/libc/nss/nsswitch.c b/libc/nss/nsswitch.c
index 929df5422..480110d5e 100644
--- a/libc/nss/nsswitch.c
+++ b/libc/nss/nsswitch.c
@@ -56,8 +56,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. */
@@ -474,7 +476,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.tree, &known_compare);
@@ -860,6 +864,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)
@@ -884,6 +889,7 @@ nss_new_service (name_database *database, const char *name)
return *currentp;
}
+#endif
#endif /* __OPTION_EGLIBC_NSSWITCH */