summaryrefslogtreecommitdiff
path: root/auth.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-04-09 21:12:00 +1000
committerDamien Miller <djm@mindrot.org>2003-04-09 21:12:00 +1000
commit2a3f20e397b72e1efa834f8bf884e2dbdea9928b (patch)
tree134e1c685ff2c4becdc1253642885612c3bf3f42 /auth.c
parentbf2a0174e35bbebb76f464d9395e82a7675e56de (diff)
downloadopenssh-git-2a3f20e397b72e1efa834f8bf884e2dbdea9928b.tar.gz
- (djm) Fix missed log => logit occurance (reference by function pointer)
Diffstat (limited to 'auth.c')
-rw-r--r--auth.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/auth.c b/auth.c
index 514b0b45..ba26034d 100644
--- a/auth.c
+++ b/auth.c
@@ -252,7 +252,7 @@ auth_log(Authctxt *authctxt, int authenticated, char *method, char *info)
!authctxt->valid ||
authctxt->failures >= AUTH_FAIL_LOG ||
strcmp(method, "password") == 0)
- authlog = log;
+ authlog = logit;
if (authctxt->postponed)
authmsg = "Postponed";