diff options
author | Ulrich Drepper <drepper@gmail.com> | 2011-10-07 01:20:53 -0400 |
---|---|---|
committer | Ulrich Drepper <drepper@gmail.com> | 2011-10-07 01:20:53 -0400 |
commit | 21fd49a9ef9c21cd2c87d0facf9f53bedb5cea20 (patch) | |
tree | 4646a820cae6c4334f1a6bda2649e0f39f688d48 /nscd/connections.c | |
parent | 32b63198d62a59adcc11bb9b165fd18e756e4e39 (diff) | |
download | glibc-21fd49a9ef9c21cd2c87d0facf9f53bedb5cea20.tar glibc-21fd49a9ef9c21cd2c87d0facf9f53bedb5cea20.tar.gz glibc-21fd49a9ef9c21cd2c87d0facf9f53bedb5cea20.tar.bz2 glibc-21fd49a9ef9c21cd2c87d0facf9f53bedb5cea20.zip |
Don't unnecesarily use inotify in nscd
Diffstat (limited to 'nscd/connections.c')
-rw-r--r-- | nscd/connections.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nscd/connections.c b/nscd/connections.c index 6e48869c68..7d3ff2e43b 100644 --- a/nscd/connections.c +++ b/nscd/connections.c @@ -891,7 +891,7 @@ cannot set socket to close on exec: %s; disabling paranoia mode"), void register_traced_file (size_t dbidx, struct traced_file *finfo) { - if (! dbs[dbidx].check_file) + if (! dbs[dbidx].enabled || ! dbs[dbidx].check_file) return; if (__builtin_expect (debug_level > 0, 0)) |