summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorDamien Miller <djm@cvs.openbsd.org>2008-07-12 04:52:51 +0000
committerDamien Miller <djm@cvs.openbsd.org>2008-07-12 04:52:51 +0000
commitbc80cf198ba91a6775223262737c26cc0254bfb0 (patch)
tree07723e507ea4f9ff379778d99a3d7623c0f393ad /usr.bin
parent60ed673d5f65ad84e0e28235e11a1de3df615633 (diff)
unbreak; move clearing of cctx struct to before first use
reported by dkrause@
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/channels.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/channels.c b/usr.bin/ssh/channels.c
index 3fdf8471898..57e10301f68 100644
--- a/usr.bin/ssh/channels.c
+++ b/usr.bin/ssh/channels.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: channels.c,v 1.283 2008/07/10 18:05:58 markus Exp $ */
+/* $OpenBSD: channels.c,v 1.284 2008/07/12 04:52:50 djm Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -2837,6 +2837,7 @@ connect_to(const char *host, u_short port, char *ctype, char *rname)
struct channel_connect cctx;
Channel *c;
+ memset(&cctx, 0, sizeof(cctx));
memset(&hints, 0, sizeof(hints));
hints.ai_family = IPv4or6;
hints.ai_socktype = SOCK_STREAM;
@@ -2847,7 +2848,6 @@ connect_to(const char *host, u_short port, char *ctype, char *rname)
return NULL;
}
- memset(&cctx, 0, sizeof(cctx));
cctx.host = xstrdup(host);
cctx.port = port;
cctx.ai = cctx.aitop;