diff options
author | Volker Lendecke <vl@samba.org> | 2008-10-06 10:57:13 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2008-10-06 10:57:47 +0200 |
commit | 6aa8613b11b596fed115849262e96524b84a8fbe (patch) | |
tree | a779d4523b4e687172a8eee4fc611911fb53f2e3 /source3/winbindd | |
parent | 439086099ad97a49c93102af1e6edafabea64b6f (diff) | |
download | samba-6aa8613b11b596fed115849262e96524b84a8fbe.tar.gz samba-6aa8613b11b596fed115849262e96524b84a8fbe.tar.bz2 samba-6aa8613b11b596fed115849262e96524b84a8fbe.zip |
Log in the parent winbind log where a request is going
Diffstat (limited to 'source3/winbindd')
-rw-r--r-- | source3/winbindd/winbindd_dual.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source3/winbindd/winbindd_dual.c b/source3/winbindd/winbindd_dual.c index 1600f05eb1..f6a9c1f26d 100644 --- a/source3/winbindd/winbindd_dual.c +++ b/source3/winbindd/winbindd_dual.c @@ -120,6 +120,10 @@ void async_request(TALLOC_CTX *mem_ctx, struct winbindd_child *child, SMB_ASSERT(continuation != NULL); + DEBUG(10, ("Sending request to child pid %d (domain=%s)\n", + (int)child->pid, + (child->domain != NULL) ? child->domain->name : "''")); + state = TALLOC_P(mem_ctx, struct winbindd_async_request); if (state == NULL) { |