summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@cvs.openbsd.org>2013-05-16 10:43:35 +0000
committerDarren Tucker <dtucker@cvs.openbsd.org>2013-05-16 10:43:35 +0000
commit78f99218944bab8d10d6bdb8d11db87c10c7a653 (patch)
tree4f327e4bfcb848710a5dde1b060898c1fb654fd1 /usr.bin
parent771631634d7e19d4c9d41892cb466686c8a649fa (diff)
remove now-unused variables
Diffstat (limited to 'usr.bin')
-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;