diff options
author | Günther Deschner <gd@samba.org> | 2006-03-17 10:14:33 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:15:34 -0500 |
commit | 0dd9afad767d4f47f0ffdb5a19d9badd0d53bdfa (patch) | |
tree | 81e0c7b418846a63ba43904f03e2c3b035f2e19b | |
parent | 9fb55b5cb8e916505d3b823c6761c2eff8a5f6ed (diff) | |
download | samba-0dd9afad767d4f47f0ffdb5a19d9badd0d53bdfa.tar.gz samba-0dd9afad767d4f47f0ffdb5a19d9badd0d53bdfa.tar.bz2 samba-0dd9afad767d4f47f0ffdb5a19d9badd0d53bdfa.zip |
r14505: Rename the timed_event to lockout_policy_event.
Guenther
(This used to be commit 3e607aa69ae2d43fb6ec170d03221a6b22d3f35d)
-rw-r--r-- | source3/nsswitch/winbindd.h | 2 | ||||
-rw-r--r-- | source3/nsswitch/winbindd_dual.c | 16 |
2 files changed, 9 insertions, 9 deletions
diff --git a/source3/nsswitch/winbindd.h b/source3/nsswitch/winbindd.h index 6a220438a9..e5f1c9699c 100644 --- a/source3/nsswitch/winbindd.h +++ b/source3/nsswitch/winbindd.h @@ -149,7 +149,7 @@ struct winbindd_child { TALLOC_CTX *mem_ctx; struct fd_event event; - struct timed_event *timed_event; + struct timed_event *lockout_policy_event; struct winbindd_async_request *requests; }; diff --git a/source3/nsswitch/winbindd_dual.c b/source3/nsswitch/winbindd_dual.c index f70b2539d3..a049bf7b7a 100644 --- a/source3/nsswitch/winbindd_dual.c +++ b/source3/nsswitch/winbindd_dual.c @@ -508,8 +508,8 @@ static void account_lockout_policy_handler(struct timed_event *te, DEBUG(10,("account_lockout_policy_handler called\n")); - if (child->timed_event) { - TALLOC_FREE(child->timed_event); + if (child->lockout_policy_event) { + TALLOC_FREE(child->lockout_policy_event); } methods = child->domain->methods; @@ -520,11 +520,11 @@ static void account_lockout_policy_handler(struct timed_event *te, return; } - child->timed_event = add_timed_event(child->mem_ctx, - timeval_current_ofs(3600, 0), - "account_lockout_policy_handler", - account_lockout_policy_handler, - child); + child->lockout_policy_event = add_timed_event(child->mem_ctx, + timeval_current_ofs(3600, 0), + "account_lockout_policy_handler", + account_lockout_policy_handler, + child); } /* Deal with a request to go offline. */ @@ -657,7 +657,7 @@ static BOOL fork_domain_child(struct winbindd_child *child) if (child->domain != NULL) { /* We might be in the idmap child...*/ - child->timed_event = add_timed_event( + child->lockout_policy_event = add_timed_event( child->mem_ctx, timeval_zero(), "account_lockout_policy_handler", account_lockout_policy_handler, |