summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/sshd.c b/sshd.c
index 2ecf18cde..fc07f9264 100644
--- a/sshd.c
+++ b/sshd.c
@@ -40,7 +40,7 @@
40 */ 40 */
41 41
42#include "includes.h" 42#include "includes.h"
43RCSID("$OpenBSD: sshd.c,v 1.223 2002/01/13 17:57:37 markus Exp $"); 43RCSID("$OpenBSD: sshd.c,v 1.224 2002/02/04 12:15:25 markus Exp $");
44 44
45#include <openssl/dh.h> 45#include <openssl/dh.h>
46#include <openssl/bn.h> 46#include <openssl/bn.h>
@@ -709,8 +709,10 @@ main(int ac, char **av)
709 * key (unless started from inetd) 709 * key (unless started from inetd)
710 */ 710 */
711 log_init(__progname, 711 log_init(__progname,
712 options.log_level == -1 ? SYSLOG_LEVEL_INFO : options.log_level, 712 options.log_level == SYSLOG_LEVEL_NOT_SET ?
713 options.log_facility == -1 ? SYSLOG_FACILITY_AUTH : options.log_facility, 713 SYSLOG_LEVEL_INFO : options.log_level,
714 options.log_facility == SYSLOG_FACILITY_NOT_SET ?
715 SYSLOG_FACILITY_AUTH : options.log_facility,
714 !inetd_flag); 716 !inetd_flag);
715 717
716#ifdef _CRAY 718#ifdef _CRAY