mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-27 07:44:29 +02:00
upstream commit
When dumping the server configuration (sshd -T), print correct KEX, MAC and cipher defaults. Spotted by Iain Morgan
This commit is contained in:
parent
7ff880ede5
commit
57d378ec92
12
servconf.c
12
servconf.c
@ -1,5 +1,5 @@
|
|||||||
|
|
||||||
/* $OpenBSD: servconf.c,v 1.251 2014/07/15 15:54:14 millert Exp $ */
|
/* $OpenBSD: servconf.c,v 1.252 2014/08/19 23:58:28 djm Exp $ */
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||||
* All rights reserved
|
* All rights reserved
|
||||||
@ -54,6 +54,7 @@
|
|||||||
#include "packet.h"
|
#include "packet.h"
|
||||||
#include "hostfile.h"
|
#include "hostfile.h"
|
||||||
#include "auth.h"
|
#include "auth.h"
|
||||||
|
#include "myproposal.h"
|
||||||
|
|
||||||
static void add_listen_addr(ServerOptions *, char *, int);
|
static void add_listen_addr(ServerOptions *, char *, int);
|
||||||
static void add_one_listen_addr(ServerOptions *, char *, int);
|
static void add_one_listen_addr(ServerOptions *, char *, int);
|
||||||
@ -2070,9 +2071,8 @@ dump_config(ServerOptions *o)
|
|||||||
/* string arguments */
|
/* string arguments */
|
||||||
dump_cfg_string(sPidFile, o->pid_file);
|
dump_cfg_string(sPidFile, o->pid_file);
|
||||||
dump_cfg_string(sXAuthLocation, o->xauth_location);
|
dump_cfg_string(sXAuthLocation, o->xauth_location);
|
||||||
dump_cfg_string(sCiphers, o->ciphers ? o->ciphers :
|
dump_cfg_string(sCiphers, o->ciphers ? o->ciphers : KEX_SERVER_ENCRYPT);
|
||||||
cipher_alg_list(',', 0));
|
dump_cfg_string(sMacs, o->macs ? o->macs : KEX_SERVER_MAC);
|
||||||
dump_cfg_string(sMacs, o->macs ? o->macs : mac_alg_list(','));
|
|
||||||
dump_cfg_string(sBanner, o->banner);
|
dump_cfg_string(sBanner, o->banner);
|
||||||
dump_cfg_string(sForceCommand, o->adm_forced_command);
|
dump_cfg_string(sForceCommand, o->adm_forced_command);
|
||||||
dump_cfg_string(sChrootDirectory, o->chroot_directory);
|
dump_cfg_string(sChrootDirectory, o->chroot_directory);
|
||||||
@ -2084,8 +2084,8 @@ dump_config(ServerOptions *o)
|
|||||||
dump_cfg_string(sAuthorizedKeysCommand, o->authorized_keys_command);
|
dump_cfg_string(sAuthorizedKeysCommand, o->authorized_keys_command);
|
||||||
dump_cfg_string(sAuthorizedKeysCommandUser, o->authorized_keys_command_user);
|
dump_cfg_string(sAuthorizedKeysCommandUser, o->authorized_keys_command_user);
|
||||||
dump_cfg_string(sHostKeyAgent, o->host_key_agent);
|
dump_cfg_string(sHostKeyAgent, o->host_key_agent);
|
||||||
dump_cfg_string(sKexAlgorithms, o->kex_algorithms ? o->kex_algorithms :
|
dump_cfg_string(sKexAlgorithms,
|
||||||
kex_alg_list(','));
|
o->kex_algorithms ? o->kex_algorithms : KEX_SERVER_KEX);
|
||||||
|
|
||||||
/* string arguments requiring a lookup */
|
/* string arguments requiring a lookup */
|
||||||
dump_cfg_string(sLogLevel, log_level_name(o->log_level));
|
dump_cfg_string(sLogLevel, log_level_name(o->log_level));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user