- (djm) Fix missed log => logit occurance (reference by function pointer)
This commit is contained in:
parent
bf2a0174e3
commit
2a3f20e397
|
@ -34,6 +34,7 @@
|
||||||
[servconf.c]
|
[servconf.c]
|
||||||
Don't include <krb.h> when compiling with Kerberos 5 support
|
Don't include <krb.h> when compiling with Kerberos 5 support
|
||||||
- (djm) Fix up missing include for packet.c
|
- (djm) Fix up missing include for packet.c
|
||||||
|
- (djm) Fix missed log => logit occurance (reference by function pointer)
|
||||||
|
|
||||||
20030402
|
20030402
|
||||||
- (bal) if IP_TOS is not found or broken don't try to compile in
|
- (bal) if IP_TOS is not found or broken don't try to compile in
|
||||||
|
@ -1336,4 +1337,4 @@
|
||||||
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
save auth method before monitor_reset_key_state(); bugzilla bug #284;
|
||||||
ok provos@
|
ok provos@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.2657 2003/04/09 11:07:14 djm Exp $
|
$Id: ChangeLog,v 1.2658 2003/04/09 11:12:11 djm Exp $
|
||||||
|
|
2
auth.c
2
auth.c
|
@ -252,7 +252,7 @@ auth_log(Authctxt *authctxt, int authenticated, char *method, char *info)
|
||||||
!authctxt->valid ||
|
!authctxt->valid ||
|
||||||
authctxt->failures >= AUTH_FAIL_LOG ||
|
authctxt->failures >= AUTH_FAIL_LOG ||
|
||||||
strcmp(method, "password") == 0)
|
strcmp(method, "password") == 0)
|
||||||
authlog = log;
|
authlog = logit;
|
||||||
|
|
||||||
if (authctxt->postponed)
|
if (authctxt->postponed)
|
||||||
authmsg = "Postponed";
|
authmsg = "Postponed";
|
||||||
|
|
Loading…
Reference in New Issue