summaryrefslogtreecommitdiff
path: root/readconf.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2013-05-16 20:48:14 +1000
committerDarren Tucker <dtucker@zip.com.au>2013-05-16 20:48:14 +1000
commit9113d0c2381202412c912a20c8083ab7d6824ec9 (patch)
tree407c979b637bf31afdf9dc66fbdd1e19e0d1e525 /readconf.c
parente194ba4111ffd47cd1f4c8be1ddc8a4cb673d005 (diff)
- dtucker@cvs.openbsd.org 2013/05/16 10:43:34
[servconf.c readconf.c] remove now-unused variables
Diffstat (limited to 'readconf.c')
-rw-r--r--readconf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/readconf.c b/readconf.c
index cbc1981ab..30c1e83bd 100644
--- a/readconf.c
+++ b/readconf.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.c,v 1.200 2013/05/16 09:12:31 dtucker Exp $ */ 1/* $OpenBSD: readconf.c,v 1.201 2013/05/16 10:43:34 dtucker Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -385,9 +385,9 @@ process_config_line(Options *options, const char *host,
385 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2; 385 char *s, **charptr, *endofnumber, *keyword, *arg, *arg2;
386 char **cpptr, fwdarg[256]; 386 char **cpptr, fwdarg[256];
387 u_int i, *uintptr, max_entries = 0; 387 u_int i, *uintptr, max_entries = 0;
388 int negated, opcode, *intptr, value, value2, scale; 388 int negated, opcode, *intptr, value, value2;
389 LogLevel *log_level_ptr; 389 LogLevel *log_level_ptr;
390 long long orig, val64; 390 long long val64;
391 size_t len; 391 size_t len;
392 Forward fwd; 392 Forward fwd;
393 393