summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2012-01-14 11:35:20 -0500
committerStephen Gallagher <sgallagh@redhat.com>2012-01-17 08:32:28 -0500
commitd400dd9d1bb97984335aaeea200caf50b45644c2 (patch)
tree77c708590c1ad40c8fcdb04c9c5eed1186da0b2e /src
parentc935271de3b99d35112e0faf854cbfa9dfaa104a (diff)
downloadsssd-d400dd9d1bb97984335aaeea200caf50b45644c2.tar.gz
sssd-d400dd9d1bb97984335aaeea200caf50b45644c2.tar.xz
sssd-d400dd9d1bb97984335aaeea200caf50b45644c2.zip
NSS: Improve DEBUG messages for netgroup cache
Diffstat (limited to 'src')
-rw-r--r--src/responder/nss/nsssrv_netgroup.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/responder/nss/nsssrv_netgroup.c b/src/responder/nss/nsssrv_netgroup.c
index 1b089f719..bb047d6a3 100644
--- a/src/responder/nss/nsssrv_netgroup.c
+++ b/src/responder/nss/nsssrv_netgroup.c
@@ -147,8 +147,8 @@ static int netgr_hash_remove (TALLOC_CTX *ctx)
/* Remove the netgroup result object from the lookup table */
hret = hash_delete(netgr->lookup_table, &key);
if (hret != HASH_SUCCESS) {
- DEBUG(0, ("Could not remove key from table! [%d][%s]\n",
- hret, hash_error_string(hret)));
+ DEBUG(0, ("Could not remove key [%s] from table! [%d][%s]\n",
+ netgr->name, hret, hash_error_string(hret)));
return -1;
}
return 0;