diff options
author | 2014-10-13 00:38:35 +0000 | |
---|---|---|
committer | 2014-10-13 00:38:35 +0000 | |
commit | a4a6f932ea96059614c4abfd1acacc8aa4f06a8a (patch) | |
tree | f6fc4aa75713d0cf7f684dcd002a41b2c632d754 | |
parent | take the pool_item pi_magic touching out from under #ifdef DIAGNOSTIC. (diff) | |
download | wireguard-openbsd-a4a6f932ea96059614c4abfd1acacc8aa4f06a8a.tar.xz wireguard-openbsd-a4a6f932ea96059614c4abfd1acacc8aa4f06a8a.zip |
whitespace
-rw-r--r-- | usr.bin/ssh/servconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c index 4d127c3671f..1040695e2b1 100644 --- a/usr.bin/ssh/servconf.c +++ b/usr.bin/ssh/servconf.c @@ -1,5 +1,5 @@ -/* $OpenBSD: servconf.c,v 1.252 2014/08/19 23:58:28 djm Exp $ */ +/* $OpenBSD: servconf.c,v 1.253 2014/10/13 00:38:35 djm Exp $ */ /* * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland * All rights reserved @@ -2033,7 +2033,7 @@ dump_config(ServerOptions *o) dump_cfg_string(sAuthorizedKeysCommandUser, o->authorized_keys_command_user); dump_cfg_string(sHostKeyAgent, o->host_key_agent); dump_cfg_string(sKexAlgorithms, - o->kex_algorithms ? o->kex_algorithms : KEX_SERVER_KEX); + o->kex_algorithms ? o->kex_algorithms : KEX_SERVER_KEX); /* string arguments requiring a lookup */ dump_cfg_string(sLogLevel, log_level_name(o->log_level)); |