summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--channels.c3
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ae8efacae..40b939018 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -9,6 +9,9 @@
9 /*NOTREACHED*/ for lint warning: 9 /*NOTREACHED*/ for lint warning:
10 warning: function key_equal falls off bottom without returning value 10 warning: function key_equal falls off bottom without returning value
11 ok djm@ 11 ok djm@
12 - markus@cvs.openbsd.org 2008/07/10 18:05:58
13 [channels.c]
14 missing bzero; from mickey; ok djm@
12 15
1320080709 1620080709
14 - (djm) [Makefile.in] Print "all tests passed" when all regress tests pass 17 - (djm) [Makefile.in] Print "all tests passed" when all regress tests pass
@@ -4615,4 +4618,4 @@
4615 OpenServer 6 and add osr5bigcrypt support so when someone migrates 4618 OpenServer 6 and add osr5bigcrypt support so when someone migrates
4616 passwords between UnixWare and OpenServer they will still work. OK dtucker@ 4619 passwords between UnixWare and OpenServer they will still work. OK dtucker@
4617 4620
4618$Id: ChangeLog,v 1.5071 2008/07/11 07:35:09 djm Exp $ 4621$Id: ChangeLog,v 1.5072 2008/07/11 07:35:37 djm Exp $
diff --git a/channels.c b/channels.c
index ac5134b5b..9f27fa632 100644
--- a/channels.c
+++ b/channels.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: channels.c,v 1.282 2008/06/16 13:22:53 dtucker Exp $ */ 1/* $OpenBSD: channels.c,v 1.283 2008/07/10 18:05:58 markus 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
@@ -2875,6 +2875,7 @@ connect_to(const char *host, u_short port, char *ctype, char *rname)
2875 return NULL; 2875 return NULL;
2876 } 2876 }
2877 2877
2878 memset(&cctx, 0, sizeof(cctx));
2878 cctx.host = xstrdup(host); 2879 cctx.host = xstrdup(host);
2879 cctx.port = port; 2880 cctx.port = port;
2880 cctx.ai = cctx.aitop; 2881 cctx.ai = cctx.aitop;