summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2021-04-13 13:42:37 +0000
committerJeremy Allison <jra@samba.org>2021-04-19 18:18:31 +0000
commitc0edfd91e4be447f7d4ec59e4c049eadba227008 (patch)
tree22f8f698c07900d6160f60b5602a709b88b4fec5 /source3
parentbf87771f18f0c63f2c50ac6070de14936180e6e1 (diff)
downloadsamba-c0edfd91e4be447f7d4ec59e4c049eadba227008.tar.gz
winbindd: Fix a typo
Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'source3')
-rw-r--r--source3/winbindd/winbindd_pam.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/source3/winbindd/winbindd_pam.c b/source3/winbindd/winbindd_pam.c
index 6c8f8824b8f..a2bb8816859 100644
--- a/source3/winbindd/winbindd_pam.c
+++ b/source3/winbindd/winbindd_pam.c
@@ -1473,8 +1473,10 @@ static NTSTATUS winbindd_dual_auth_passdb(TALLOC_CTX *mem_ctx,
}
*pinfo3 = info3;
- DEBUG(10, ("Authenticaticating user %s\\%s returned %s\n", domain,
- user, nt_errstr(status)));
+ DBG_DEBUG("Authenticating user %s\\%s returned %s\n",
+ domain,
+ user,
+ nt_errstr(status));
TALLOC_FREE(frame);
return status;
}