From d400dd9d1bb97984335aaeea200caf50b45644c2 Mon Sep 17 00:00:00 2001 From: Stephen Gallagher Date: Sat, 14 Jan 2012 11:35:20 -0500 Subject: NSS: Improve DEBUG messages for netgroup cache --- src/responder/nss/nsssrv_netgroup.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') 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; -- cgit