From 60daaeeb3446729b7b668bb7a03a97bbf02ad20a Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Fri, 25 Jan 2008 01:40:01 +0100 Subject: Add a debug message: show the sid lookup_sid() was called for. Michael (This used to be commit 6c7c6c3f85a4bd171c62031b2b8e59d3f7054061) --- source3/passdb/lookup_sid.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/passdb/lookup_sid.c') diff --git a/source3/passdb/lookup_sid.c b/source3/passdb/lookup_sid.c index 3c54cb56fe..c954c776b6 100644 --- a/source3/passdb/lookup_sid.c +++ b/source3/passdb/lookup_sid.c @@ -925,6 +925,8 @@ bool lookup_sid(TALLOC_CTX *mem_ctx, const DOM_SID *sid, TALLOC_CTX *tmp_ctx; bool ret = false; + DEBUG(10, ("lookup_sid called for SID '%s'\n", sid_string_dbg(sid))); + if (!(tmp_ctx = talloc_new(mem_ctx))) { DEBUG(0, ("talloc_new failed\n")); return false; -- cgit