diff options
author | Reyk Floeter <reyk@cvs.openbsd.org> | 2016-06-14 13:45:41 +0000 |
---|---|---|
committer | Reyk Floeter <reyk@cvs.openbsd.org> | 2016-06-14 13:45:41 +0000 |
commit | 06065bc9cac91e5dfc0a8ca9601e717f399d5893 (patch) | |
tree | 5e03bcfc2b7954f180419f6813602f3d10531518 | |
parent | f3182207c9c3ba7dd570893646dfc2f8869cac9b (diff) |
Remove unused variable, found by clang
-rw-r--r-- | usr.sbin/ikectl/parser.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/ikectl/parser.c b/usr.sbin/ikectl/parser.c index a09bf169ebc..52488845fd3 100644 --- a/usr.sbin/ikectl/parser.c +++ b/usr.sbin/ikectl/parser.c @@ -1,4 +1,4 @@ -/* $OpenBSD: parser.c,v 1.15 2015/11/02 10:27:44 jsg Exp $ */ +/* $OpenBSD: parser.c,v 1.16 2016/06/14 13:45:40 reyk Exp $ */ /* * Copyright (c) 2010-2013 Reyk Floeter <reyk@openbsd.org> @@ -67,7 +67,6 @@ static const struct token t_ca_ex_pass[]; static const struct token t_ca_modifiers[]; static const struct token t_ca_cert[]; static const struct token t_ca_cert_extusage[]; -static const struct token t_ca_cert_ex_peer[]; static const struct token t_ca_cert_modifiers[]; static const struct token t_ca_key[]; static const struct token t_ca_key_modifiers[]; |