diff options
| author | Jacques Vidrine <nectar@FreeBSD.org> | 2003-04-24 19:57:31 +0000 |
|---|---|---|
| committer | Jacques Vidrine <nectar@FreeBSD.org> | 2003-04-24 19:57:31 +0000 |
| commit | 43f9b2521d4cb9126df17f0ed553dc4362e5f2d9 (patch) | |
| tree | fa4f284895f7b5fac89ac91217873a8f78d9d31a | |
| parent | 696f22f04fd82d2f1b560b963a5da542125319ab (diff) | |
Notes
| -rw-r--r-- | lib/libc/net/nsdispatch.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/net/nsdispatch.c b/lib/libc/net/nsdispatch.c index 60a3eba3c07f..926107711cd0 100644 --- a/lib/libc/net/nsdispatch.c +++ b/lib/libc/net/nsdispatch.c @@ -549,7 +549,9 @@ nss_method_lookup(const char *source, const char *database, return (match->method); } } - nss_log(LOG_DEBUG, "%s, %s, %s, not found", source, database, method); + if (is_dynamic()) + nss_log(LOG_DEBUG, "%s, %s, %s, not found", source, database, + method); *mdata = NULL; return (NULL); } |
