- markus@cvs.openbsd.org 2001/03/21 21:06:30
[session.c] missing init; from mib@unimelb.edu.au
This commit is contained in:
parent
f1107f5ede
commit
d9267454ca
|
@ -20,6 +20,9 @@
|
||||||
- jakob@cvs.openbsd.org 2001/03/21 14:20:45
|
- jakob@cvs.openbsd.org 2001/03/21 14:20:45
|
||||||
[ssh-keygen.c]
|
[ssh-keygen.c]
|
||||||
add -B flag to usage
|
add -B flag to usage
|
||||||
|
- markus@cvs.openbsd.org 2001/03/21 21:06:30
|
||||||
|
[session.c]
|
||||||
|
missing init; from mib@unimelb.edu.au
|
||||||
|
|
||||||
20010321
|
20010321
|
||||||
- (djm) Fix ttyname breakage for AIX and Tru64. Patch from Steve
|
- (djm) Fix ttyname breakage for AIX and Tru64. Patch from Steve
|
||||||
|
@ -4679,4 +4682,4 @@
|
||||||
- Wrote replacements for strlcpy and mkdtemp
|
- Wrote replacements for strlcpy and mkdtemp
|
||||||
- Released 1.0pre1
|
- Released 1.0pre1
|
||||||
|
|
||||||
$Id: ChangeLog,v 1.1007 2001/03/22 02:05:32 mouring Exp $
|
$Id: ChangeLog,v 1.1008 2001/03/22 02:06:57 mouring Exp $
|
||||||
|
|
|
@ -33,7 +33,7 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "includes.h"
|
#include "includes.h"
|
||||||
RCSID("$OpenBSD: session.c,v 1.65 2001/03/21 11:43:44 markus Exp $");
|
RCSID("$OpenBSD: session.c,v 1.66 2001/03/21 21:06:30 markus Exp $");
|
||||||
|
|
||||||
#include "ssh.h"
|
#include "ssh.h"
|
||||||
#include "ssh1.h"
|
#include "ssh1.h"
|
||||||
|
@ -1515,6 +1515,7 @@ session_new(void)
|
||||||
s->chanid = -1;
|
s->chanid = -1;
|
||||||
s->ptyfd = -1;
|
s->ptyfd = -1;
|
||||||
s->ttyfd = -1;
|
s->ttyfd = -1;
|
||||||
|
s->tty[0] = '\0';
|
||||||
s->term = NULL;
|
s->term = NULL;
|
||||||
s->pw = NULL;
|
s->pw = NULL;
|
||||||
s->display = NULL;
|
s->display = NULL;
|
||||||
|
|
Loading…
Reference in New Issue