mirror of
https://github.com/PowerShell/openssh-portable.git
synced 2025-07-28 16:24:39 +02:00
- markus@cvs.openbsd.org 2008/07/10 18:05:58
[channels.c] missing bzero; from mickey; ok djm@
This commit is contained in:
parent
87dd5f2804
commit
dda5fffb84
@ -9,6 +9,9 @@
|
|||||||
/*NOTREACHED*/ for lint warning:
|
/*NOTREACHED*/ for lint warning:
|
||||||
warning: function key_equal falls off bottom without returning value
|
warning: function key_equal falls off bottom without returning value
|
||||||
ok djm@
|
ok djm@
|
||||||
|
- markus@cvs.openbsd.org 2008/07/10 18:05:58
|
||||||
|
[channels.c]
|
||||||
|
missing bzero; from mickey; ok djm@
|
||||||
|
|
||||||
20080709
|
20080709
|
||||||
- (djm) [Makefile.in] Print "all tests passed" when all regress tests pass
|
- (djm) [Makefile.in] Print "all tests passed" when all regress tests pass
|
||||||
@ -4615,4 +4618,4 @@
|
|||||||
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
||||||
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.5071 2008/07/11 07:35:09 djm Exp $
|
$Id: ChangeLog,v 1.5072 2008/07/11 07:35:37 djm Exp $
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
/* $OpenBSD: channels.c,v 1.282 2008/06/16 13:22:53 dtucker Exp $ */
|
/* $OpenBSD: channels.c,v 1.283 2008/07/10 18:05:58 markus Exp $ */
|
||||||
/*
|
/*
|
||||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
* 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)
|
|||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
memset(&cctx, 0, sizeof(cctx));
|
||||||
cctx.host = xstrdup(host);
|
cctx.host = xstrdup(host);
|
||||||
cctx.port = port;
|
cctx.port = port;
|
||||||
cctx.ai = cctx.aitop;
|
cctx.ai = cctx.aitop;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user