diff options
author | Volker Lendecke <vlendec@samba.org> | 2005-10-21 21:25:26 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:09 -0500 |
commit | e7dba276858783b82d6d655d632d460176208473 (patch) | |
tree | dc3f1fb7cfc2ebcc6fead10f95684e720a590b1b /source3/nsswitch | |
parent | 0698148b44aeb471137b2f516f09fb9653085511 (diff) | |
download | samba-e7dba276858783b82d6d655d632d460176208473.tar.gz samba-e7dba276858783b82d6d655d632d460176208473.tar.bz2 samba-e7dba276858783b82d6d655d632d460176208473.zip |
r11251: Fix a comment
(This used to be commit 1ce6d12898c6f24c83e54561862735586b5a41b4)
Diffstat (limited to 'source3/nsswitch')
-rw-r--r-- | source3/nsswitch/winbindd_dual.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/source3/nsswitch/winbindd_dual.c b/source3/nsswitch/winbindd_dual.c index 60b7411417..38030ee9ac 100644 --- a/source3/nsswitch/winbindd_dual.c +++ b/source3/nsswitch/winbindd_dual.c @@ -1,7 +1,7 @@ /* Unix SMB/CIFS implementation. - Winbind background daemon + Winbind child daemons Copyright (C) Andrew Tridgell 2002 Copyright (C) Volker Lendecke 2004,2005 @@ -22,12 +22,10 @@ */ /* - the idea of the optional dual daemon mode is ot prevent slow domain - responses from clagging up the rest of the system. When in dual - daemon mode winbindd always responds to requests from cache if the - request is in cache, and if the cached answer is stale then it asks - the "dual daemon" to update the cache for that request - + * We fork a child per domain to be able to act non-blocking in the main + * winbind daemon. A domain controller thousands of miles away being being + * slow replying with a 10.000 user list should not hold up netlogon calls + * that can be handled locally. */ #include "includes.h" |