summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordjm@openbsd.org <djm@openbsd.org>2018-09-20 23:40:16 +0000
committerDamien Miller <djm@mindrot.org>2018-09-21 09:41:59 +1000
commit0cbed248ed81584129b67c348dbb801660f25a6a (patch)
tree1294f24b1c19f1cb9036357a56ecedbfa403ca00
parent62528870c0ec48cd86a37dd7320fb85886c3e6ee (diff)
upstream: actually make CASignatureAlgorithms available as a config
option OpenBSD-Commit-ID: 93fa7ff58314ed7b1ab7744090a6a91232e6ae52
-rw-r--r--servconf.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/servconf.c b/servconf.c
index 5411640fc..932d363bb 100644
--- a/servconf.c
+++ b/servconf.c
@@ -1,5 +1,5 @@
1 1
2/* $OpenBSD: servconf.c,v 1.341 2018/09/20 03:28:06 djm Exp $ */ 2/* $OpenBSD: servconf.c,v 1.342 2018/09/20 23:40:16 djm Exp $ */
3/* 3/*
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
5 * All rights reserved 5 * All rights reserved
@@ -644,6 +644,7 @@ static struct {
644 { "disableforwarding", sDisableForwarding, SSHCFG_ALL }, 644 { "disableforwarding", sDisableForwarding, SSHCFG_ALL },
645 { "exposeauthinfo", sExposeAuthInfo, SSHCFG_ALL }, 645 { "exposeauthinfo", sExposeAuthInfo, SSHCFG_ALL },
646 { "rdomain", sRDomain, SSHCFG_ALL }, 646 { "rdomain", sRDomain, SSHCFG_ALL },
647 { "casignaturealgorithms", sCASignatureAlgorithms, SSHCFG_ALL },
647 { NULL, sBadOption, 0 } 648 { NULL, sBadOption, 0 }
648}; 649};
649 650