[BACK]Return to compat.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

File: [local] / src / usr.bin / ssh / compat.c (download)

Revision 1.3, Mon Nov 22 21:02:38 1999 UTC (24 years, 6 months ago) by markus
Branch: MAIN
Changes since 1.2: +2 -2 lines

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

#include "includes.h"
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){
	verbose("Enabling compatibility mode for protocol 1.3");
	compat13=1;
}