summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--auth.c2
2 files changed, 3 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 71cb388f1..fe76077fd 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -34,6 +34,7 @@
34 [servconf.c] 34 [servconf.c]
35 Don't include <krb.h> when compiling with Kerberos 5 support 35 Don't include <krb.h> when compiling with Kerberos 5 support
36 - (djm) Fix up missing include for packet.c 36 - (djm) Fix up missing include for packet.c
37 - (djm) Fix missed log => logit occurance (reference by function pointer)
37 38
3820030402 3920030402
39 - (bal) if IP_TOS is not found or broken don't try to compile in 40 - (bal) if IP_TOS is not found or broken don't try to compile in
@@ -1336,4 +1337,4 @@
1336 save auth method before monitor_reset_key_state(); bugzilla bug #284; 1337 save auth method before monitor_reset_key_state(); bugzilla bug #284;
1337 ok provos@ 1338 ok provos@
1338 1339
1339$Id: ChangeLog,v 1.2657 2003/04/09 11:07:14 djm Exp $ 1340$Id: ChangeLog,v 1.2658 2003/04/09 11:12:11 djm Exp $
diff --git a/auth.c b/auth.c
index 514b0b456..ba26034d5 100644
--- a/auth.c
+++ b/auth.c
@@ -252,7 +252,7 @@ auth_log(Authctxt *authctxt, int authenticated, char *method, char *info)
252 !authctxt->valid || 252 !authctxt->valid ||
253 authctxt->failures >= AUTH_FAIL_LOG || 253 authctxt->failures >= AUTH_FAIL_LOG ||
254 strcmp(method, "password") == 0) 254 strcmp(method, "password") == 0)
255 authlog = log; 255 authlog = logit;
256 256
257 if (authctxt->postponed) 257 if (authctxt->postponed)
258 authmsg = "Postponed"; 258 authmsg = "Postponed";