[session.c]
     missing init; from mib@unimelb.edu.au
This commit is contained in:
Ben Lindstrom 2001-03-22 02:06:57 +00:00
parent f1107f5ede
commit d9267454ca
2 changed files with 6 additions and 2 deletions

View File

@ -20,6 +20,9 @@
- jakob@cvs.openbsd.org 2001/03/21 14:20:45
[ssh-keygen.c]
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
- (djm) Fix ttyname breakage for AIX and Tru64. Patch from Steve
@ -4679,4 +4682,4 @@
- Wrote replacements for strlcpy and mkdtemp
- 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 $

View File

@ -33,7 +33,7 @@
*/
#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 "ssh1.h"
@ -1515,6 +1515,7 @@ session_new(void)
s->chanid = -1;
s->ptyfd = -1;
s->ttyfd = -1;
s->tty[0] = '\0';
s->term = NULL;
s->pw = NULL;
s->display = NULL;