summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-01-08 06:13:41 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-01-08 06:13:41 +0000
commita383baac4604a7de1710e87fba0403e4a56d5472 (patch)
tree62d267f992fd15d00e9382f95199b138877435b7 /servconf.c
parent9ce907c3d60637943dfa46a4542164498be19ea8 (diff)
20010108
- (bal) Fixed another typo in cli.c - (bal) OpenBSD Sync - markus@cvs.openbsd.org 2001/01/07 21:26:55 [cli.c] typo - markus@cvs.openbsd.org 2001/01/07 21:26:55 [cli.c] missing free, stevesk@pobox.com - markus@cvs.openbsd.org 2001/01/07 19:06:25 [auth1.c] missing free, stevesk@pobox.com - markus@cvs.openbsd.org 2001/01/07 11:28:04 [log-client.c log-server.c log.c readconf.c servconf.c ssh.1 ssh.h sshd.8 sshd.c] rename SYSLOG_LEVEL_INFO->SYSLOG_LEVEL_NOTICE syslog priority changes: fatal() LOG_ERR -> LOG_CRIT log() LOG_INFO -> LOG_NOTICE
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/servconf.c b/servconf.c
index 8dd6e7d88..6604e3d23 100644
--- a/servconf.c
+++ b/servconf.c
@@ -10,7 +10,7 @@
10 */ 10 */
11 11
12#include "includes.h" 12#include "includes.h"
13RCSID("$OpenBSD: servconf.c,v 1.55 2000/12/19 23:17:57 markus Exp $"); 13RCSID("$OpenBSD: servconf.c,v 1.56 2001/01/07 11:28:06 markus Exp $");
14 14
15#include "ssh.h" 15#include "ssh.h"
16#include "servconf.h" 16#include "servconf.h"
@@ -129,7 +129,7 @@ fill_default_server_options(ServerOptions *options)
129 if (options->log_facility == (SyslogFacility) (-1)) 129 if (options->log_facility == (SyslogFacility) (-1))
130 options->log_facility = SYSLOG_FACILITY_AUTH; 130 options->log_facility = SYSLOG_FACILITY_AUTH;
131 if (options->log_level == (LogLevel) (-1)) 131 if (options->log_level == (LogLevel) (-1))
132 options->log_level = SYSLOG_LEVEL_INFO; 132 options->log_level = SYSLOG_LEVEL_NOTICE;
133 if (options->rhosts_authentication == -1) 133 if (options->rhosts_authentication == -1)
134 options->rhosts_authentication = 0; 134 options->rhosts_authentication = 0;
135 if (options->rhosts_rsa_authentication == -1) 135 if (options->rhosts_rsa_authentication == -1)