diff options
author | Günther Deschner <gd@samba.org> | 2006-09-06 12:21:13 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:43:29 -0500 |
commit | b4449b6b27fa19fd3bf480fc58694b03816ddab6 (patch) | |
tree | 75aed3179848f9a4a9f05253335323004f7c8b7a /source3 | |
parent | 73d25f6f784513aa850de4a7207a1436289c107c (diff) | |
download | samba-b4449b6b27fa19fd3bf480fc58694b03816ddab6.tar.gz samba-b4449b6b27fa19fd3bf480fc58694b03816ddab6.tar.bz2 samba-b4449b6b27fa19fd3bf480fc58694b03816ddab6.zip |
r18167: Adding DEBUG() to winbinds refresh seqnum to track down a failure.
Guenther
(This used to be commit 8bf197ee1658616448dcb752f51743365070901a)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/nsswitch/winbindd_cache.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/nsswitch/winbindd_cache.c b/source3/nsswitch/winbindd_cache.c index f1245a7b07..e93dcefc90 100644 --- a/source3/nsswitch/winbindd_cache.c +++ b/source3/nsswitch/winbindd_cache.c @@ -444,6 +444,7 @@ static void refresh_sequence_number(struct winbindd_domain *domain, BOOL force) status = domain->backend->sequence_number(domain, &domain->sequence_number); if (!NT_STATUS_IS_OK(status)) { + DEBUG(10,("refresh_sequence_number: failed with %s\n", nt_errstr(status))); domain->sequence_number = DOM_SEQUENCE_NONE; } |