diff options
author | Günther Deschner <gd@samba.org> | 2005-12-12 14:08:42 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:48 -0500 |
commit | c9c8781ccf14271ac4baed838b59dcad50f8b742 (patch) | |
tree | b011f36c277545f9884e0e433a5c23dba1ab727a | |
parent | db6eea0fb4fe1665120306689ace3fa2f8b9dea7 (diff) | |
download | samba-c9c8781ccf14271ac4baed838b59dcad50f8b742.tar.gz samba-c9c8781ccf14271ac4baed838b59dcad50f8b742.tar.bz2 samba-c9c8781ccf14271ac4baed838b59dcad50f8b742.zip |
r12193: Fix some typos.
Guenther
(This used to be commit 499224f02a8722eea0d4644ca81ca55da0e9a86b)
-rw-r--r-- | source3/nsswitch/winbindd_cache.c | 2 | ||||
-rw-r--r-- | source3/nsswitch/winbindd_cm.c | 2 | ||||
-rw-r--r-- | source3/nsswitch/winbindd_misc.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/source3/nsswitch/winbindd_cache.c b/source3/nsswitch/winbindd_cache.c index 2d03e452ad..841b114a78 100644 --- a/source3/nsswitch/winbindd_cache.c +++ b/source3/nsswitch/winbindd_cache.c @@ -1146,7 +1146,7 @@ static NTSTATUS lookup_usergroups(struct winbindd_domain *domain, if (NT_STATUS_V(domain->last_status) == NT_STATUS_V(NT_STATUS_ACCESS_DENIED) && netsamlogon_cache_have(user_sid)) { - DEBUG(10, ("query_user: cached access denied and have cached info3\n")); + DEBUG(10, ("lookup_usergroups: cached access denied and have cached info3\n")); domain->last_status = NT_STATUS_OK; centry_free(centry); goto do_query; diff --git a/source3/nsswitch/winbindd_cm.c b/source3/nsswitch/winbindd_cm.c index 77278e8c34..6ac2520f44 100644 --- a/source3/nsswitch/winbindd_cm.c +++ b/source3/nsswitch/winbindd_cm.c @@ -209,7 +209,7 @@ static NTSTATUS cm_prepare_connection(const struct winbindd_domain *domain, WINBIND_SERVER_MUTEX_WAIT_TIME); if (!got_mutex) { - DEBUG(0,("cm_open_connection: mutex grab failed for %s\n", + DEBUG(0,("cm_prepare_connection: mutex grab failed for %s\n", controller)); result = NT_STATUS_POSSIBLE_DEADLOCK; goto done; diff --git a/source3/nsswitch/winbindd_misc.c b/source3/nsswitch/winbindd_misc.c index ec8bacc474..1fbf4b33df 100644 --- a/source3/nsswitch/winbindd_misc.c +++ b/source3/nsswitch/winbindd_misc.c @@ -179,7 +179,7 @@ enum winbindd_result winbindd_dual_getdcname(struct winbindd_domain *domain, result = cm_connect_netlogon(domain, &netlogon_pipe); if (!NT_STATUS_IS_OK(result)) { - DEBUG(1, ("Can't contact our the NETLOGON pipe\n")); + DEBUG(1, ("Can't contact the NETLOGON pipe\n")); return WINBINDD_ERROR; } |