summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordtucker <dtucker@openbsd.org>2013-05-16 10:43:34 +0000
committerdtucker <dtucker@openbsd.org>2013-05-16 10:43:34 +0000
commit264c3dd318415dffefc06cce2025937e8b73cf07 (patch)
tree9a05d35b08549065c70ef737bf2a2f5938535307
parentadd Alfa AWUS036NHR, from Sigi Rudzio, pointed out by / ok jmc (diff)
downloadwireguard-openbsd-264c3dd318415dffefc06cce2025937e8b73cf07.tar.xz
wireguard-openbsd-264c3dd318415dffefc06cce2025937e8b73cf07.zip
remove now-unused variables
-rw-r--r--usr.bin/ssh/readconf.c6
-rw-r--r--usr.bin/ssh/servconf.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c
index eb5e64fbda4..bacdbdc284c 100644
--- a/usr.bin/ssh/readconf.c
+++ b/usr.bin/ssh/readconf.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: readconf.c,v 1.200 2013/05/16 09:12:31 dtucker Exp $ */
+/* $OpenBSD: readconf.c,v 1.201 2013/05/16 10:43:34 dtucker Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -379,9 +379,9 @@ process_config_line(Options *options, const char *host,
char *s, **charptr, *endofnumber, *keyword, *arg, *arg2;
char **cpptr, fwdarg[256];
u_int i, *uintptr, max_entries = 0;
- int negated, opcode, *intptr, value, value2, scale;
+ int negated, opcode, *intptr, value, value2;
LogLevel *log_level_ptr;
- long long orig, val64;
+ long long val64;
size_t len;
Forward fwd;
diff --git a/usr.bin/ssh/servconf.c b/usr.bin/ssh/servconf.c
index 88982444308..ad09e28afc8 100644
--- a/usr.bin/ssh/servconf.c
+++ b/usr.bin/ssh/servconf.c
@@ -1,5 +1,5 @@
-/* $OpenBSD: servconf.c,v 1.236 2013/05/16 09:12:31 dtucker Exp $ */
+/* $OpenBSD: servconf.c,v 1.237 2013/05/16 10:43:34 dtucker Exp $ */
/*
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
* All rights reserved
@@ -771,13 +771,13 @@ process_server_config_line(ServerOptions *options, char *line,
struct connection_info *connectinfo)
{
char *cp, **charptr, *arg, *p, *endofnumber;
- int cmdline = 0, *intptr, value, value2, n, port, scale;
+ int cmdline = 0, *intptr, value, value2, n, port;
SyslogFacility *log_facility_ptr;
LogLevel *log_level_ptr;
ServerOpCodes opcode;
u_int i, flags = 0;
size_t len;
- long long orig, val64;
+ long long val64;
const struct multistate *multistate_ptr;
cp = line;