summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjsg <jsg@openbsd.org>2017-04-27 13:40:05 +0000
committerjsg <jsg@openbsd.org>2017-04-27 13:40:05 +0000
commitce7227bd96bc79c5767bf0bfbda07f24f05ccf0d (patch)
treec6b042a90647bfb9a36d938f0d20eef923ca4f66
parentDon't send multiple error messages in response to a single command (diff)
downloadwireguard-openbsd-ce7227bd96bc79c5767bf0bfbda07f24f05ccf0d.tar.xz
wireguard-openbsd-ce7227bd96bc79c5767bf0bfbda07f24f05ccf0d.zip
remove a static array unused since rev 1.306 spotted by clang
ok djm@
-rw-r--r--usr.bin/ssh/servconf.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c
index 69bd9cb9e62..9a873fdadca 100644
--- a/usr.bin/ssh/servconf.c
+++ b/usr.bin/ssh/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
@@ -889,13 +889,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 },