summaryrefslogtreecommitdiff
path: root/servconf.c
diff options
context:
space:
mode:
authorjsg@openbsd.org <jsg@openbsd.org>2017-04-27 13:40:05 +0000
committerDamien Miller <djm@mindrot.org>2017-04-28 13:26:36 +1000
commite13aad66e73a14b062d13aee4e98f1e21a3f6a14 (patch)
tree5f7f466dc4d485118fa6d71ab9f05fdad65b7345 /servconf.c
parent91bd2181866659f00714903e78e1c3edd4c45f3d (diff)
downloadopenssh-git-e13aad66e73a14b062d13aee4e98f1e21a3f6a14.tar.gz
upstream commit
remove a static array unused since rev 1.306 spotted by clang ok djm@ Upstream-ID: 249b3eed2446f6074ba2219ccc46919dd235a7b8
Diffstat (limited to 'servconf.c')
-rw-r--r--servconf.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/servconf.c b/servconf.c
index 56b83165..73f2c2b1 100644
--- a/servconf.c
+++ b/servconf.c
@@ -1,5 +1,5 @@
-/* $OpenBSD: servconf.c,v 1.306 2017/03/14 07:19:07 djm Exp $ */
+/* $OpenBSD: servconf.c,v 1.307 2017/04/27 13:40:05 jsg Exp $ */
/*
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved
@@ -935,13 +935,6 @@ static const struct multistate multistate_gatewayports[] = {
{ "no", 0 },
{ NULL, -1 }
};
-static const struct multistate multistate_privsep[] = {
- { "yes", PRIVSEP_NOSANDBOX },
- { "sandbox", PRIVSEP_ON },
- { "nosandbox", PRIVSEP_NOSANDBOX },
- { "no", PRIVSEP_OFF },
- { NULL, -1 }
-};
static const struct multistate multistate_tcpfwd[] = {
{ "yes", FORWARD_ALLOW },
{ "all", FORWARD_ALLOW },