summaryrefslogtreecommitdiff
path: root/usr.bin/ssh/compat.c
diff options
context:
space:
mode:
authorMarkus Friedl <markus@cvs.openbsd.org>1999-11-22 21:02:40 +0000
committerMarkus Friedl <markus@cvs.openbsd.org>1999-11-22 21:02:40 +0000
commite635c41f03fe35686ec48598b5ff248c2485d8bb (patch)
tree8521120e30f644f5a56001e3b3d4bc47b97bdb40 /usr.bin/ssh/compat.c
parent2632baae61bff755f455a90159bc81cffae148f0 (diff)
syslog changes:
* Unified Logmessage for all auth-types, for success and for failed * Standard connections get only ONE line in the LOG when level==LOG: Auth-attempts are logged only, if authentication is: a) successfull or b) with passwd or c) we had more than AUTH_FAIL_LOG failues * many log() became verbose() * old behaviour with level=VERBOSE
Diffstat (limited to 'usr.bin/ssh/compat.c')
-rw-r--r--usr.bin/ssh/compat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/compat.c b/usr.bin/ssh/compat.c
index fa0579c3107..a0d27a5e3a4 100644
--- a/usr.bin/ssh/compat.c
+++ b/usr.bin/ssh/compat.c
@@ -1,10 +1,10 @@
#include "includes.h"
-RCSID("$Id: compat.c,v 1.2 1999/10/16 22:29:01 markus Exp $");
+RCSID("$Id: compat.c,v 1.3 1999/11/22 21:02:38 markus Exp $");
#include "ssh.h"
int compat13=0;
void enable_compat13(void){
- log("Enabling compatibility mode for protocol 1.3");
+ verbose("Enabling compatibility mode for protocol 1.3");
compat13=1;
}