diff options
-rw-r--r-- | src/responder/nss/nsssrv_netgroup.c | 4 |
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; |