summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-04-23 15:17:12 +1000
committerDamien Miller <djm@mindrot.org>2013-04-23 15:17:12 +1000
commit5cbec4c25954b184e43bf3d3ac09e65eb474f5f9 (patch)
tree32284ecbb92a8c7f1d7f09f153634d0f01b03977
parent998cc56b65682d490c9bbf5977dceb1aa84a0233 (diff)
- djm@cvs.openbsd.org 2013/03/06 23:36:53
[readconf.c] g/c unused variable (-Wunused)
-rw-r--r--ChangeLog3
-rw-r--r--readconf.c4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index dbe5d8eae..687f0e1f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,9 @@
10 [session.c] 10 [session.c]
11 fatal() when ChrootDirectory specified by running without root privileges; 11 fatal() when ChrootDirectory specified by running without root privileges;
12 ok markus@ 12 ok markus@
13 - djm@cvs.openbsd.org 2013/03/06 23:36:53
14 [readconf.c]
15 g/c unused variable (-Wunused)
13 16
1420130418 1720130418
15 - (djm) [config.guess config.sub] Update to last versions before they switch 18 - (djm) [config.guess config.sub] Update to last versions before they switch
diff --git a/readconf.c b/readconf.c
index 36265e431..6e708e02e 100644
--- a/readconf.c
+++ b/readconf.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: readconf.c,v 1.196 2013/02/22 04:45:08 dtucker Exp $ */ 1/* $OpenBSD: readconf.c,v 1.197 2013/03/06 23:36:53 djm 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
@@ -1232,8 +1232,6 @@ initialize_options(Options * options)
1232void 1232void
1233fill_default_options(Options * options) 1233fill_default_options(Options * options)
1234{ 1234{
1235 int len;
1236
1237 if (options->forward_agent == -1) 1235 if (options->forward_agent == -1)
1238 options->forward_agent = 0; 1236 options->forward_agent = 0;
1239 if (options->forward_x11 == -1) 1237 if (options->forward_x11 == -1)