artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
afa585b
)
missing bzero; from mickey; ok djm@
author
markus
<markus@openbsd.org>
Thu, 10 Jul 2008 18:05:58 +0000
(18:05 +0000)
committer
markus
<markus@openbsd.org>
Thu, 10 Jul 2008 18:05:58 +0000
(18:05 +0000)
usr.bin/ssh/channels.c
patch
|
blob
|
history
diff --git
a/usr.bin/ssh/channels.c
b/usr.bin/ssh/channels.c
index
50f01b9
..
3fdf847
100644
(file)
--- a/
usr.bin/ssh/channels.c
+++ b/
usr.bin/ssh/channels.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: channels.c,v 1.28
2 2008/06/16 13:22:53 dtucker
Exp $ */
+/* $OpenBSD: channels.c,v 1.28
3 2008/07/10 18:05:58 markus
Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@
-2847,6
+2847,7
@@
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;