diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2013-03-06 23:36:54 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2013-03-06 23:36:54 +0000 |
commit | ef54a617f33af0fd55958cbea6e265bd9c2a705c (patch) | |
tree | f7b5402ce3414c89f6097e8f60dfd7d5bd153030 /usr.bin/ssh/readconf.c | |
parent | 2b1cafb580f72f815d63b641f24e5f3a39f4d0c3 (diff) |
g/c unused variable (-Wunused)
Diffstat (limited to 'usr.bin/ssh/readconf.c')
-rw-r--r-- | usr.bin/ssh/readconf.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c index b9677e4df27..519e308e2a0 100644 --- a/usr.bin/ssh/readconf.c +++ b/usr.bin/ssh/readconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.c,v 1.196 2013/02/22 04:45:08 dtucker Exp $ */ +/* $OpenBSD: readconf.c,v 1.197 2013/03/06 23:36:53 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1228,8 +1228,6 @@ initialize_options(Options * options) void fill_default_options(Options * options) { - int len; - if (options->forward_agent == -1) options->forward_agent = 0; if (options->forward_x11 == -1) |