diff options
author | Tim Potter <tpot@samba.org> | 2003-08-27 07:26:02 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-08-27 07:26:02 +0000 |
commit | c60f38569104864bfaf67e7ee9ae99f8edb7359f (patch) | |
tree | f28ef7abe58133114cf56bd4508f09a7b2428340 | |
parent | a5cddd08c8836ebc234ad4d541b1055c912977be (diff) | |
download | samba-c60f38569104864bfaf67e7ee9ae99f8edb7359f.tar.gz samba-c60f38569104864bfaf67e7ee9ae99f8edb7359f.tar.bz2 samba-c60f38569104864bfaf67e7ee9ae99f8edb7359f.zip |
Update last scan time in rescan_trusted_domains().
Fix from Ken Cross.
(This used to be commit 45775b48a0d91390aa698b750d59cda0150cfbd0)
-rw-r--r-- | source3/nsswitch/winbindd_util.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/nsswitch/winbindd_util.c b/source3/nsswitch/winbindd_util.c index e5cb87ee75..cfb534ab92 100644 --- a/source3/nsswitch/winbindd_util.c +++ b/source3/nsswitch/winbindd_util.c @@ -169,6 +169,8 @@ void rescan_trusted_domains( void ) /* this will only add new domains we didn't already know about */ add_trusted_domains( mydomain ); + + last_scan = now; return; } |