diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | session.c | 3 |
2 files changed, 6 insertions, 2 deletions
@@ -20,6 +20,9 @@ | |||
20 | - jakob@cvs.openbsd.org 2001/03/21 14:20:45 | 20 | - jakob@cvs.openbsd.org 2001/03/21 14:20:45 |
21 | [ssh-keygen.c] | 21 | [ssh-keygen.c] |
22 | add -B flag to usage | 22 | add -B flag to usage |
23 | - markus@cvs.openbsd.org 2001/03/21 21:06:30 | ||
24 | [session.c] | ||
25 | missing init; from mib@unimelb.edu.au | ||
23 | 26 | ||
24 | 20010321 | 27 | 20010321 |
25 | - (djm) Fix ttyname breakage for AIX and Tru64. Patch from Steve | 28 | - (djm) Fix ttyname breakage for AIX and Tru64. Patch from Steve |
@@ -4679,4 +4682,4 @@ | |||
4679 | - Wrote replacements for strlcpy and mkdtemp | 4682 | - Wrote replacements for strlcpy and mkdtemp |
4680 | - Released 1.0pre1 | 4683 | - Released 1.0pre1 |
4681 | 4684 | ||
4682 | $Id: ChangeLog,v 1.1007 2001/03/22 02:05:32 mouring Exp $ | 4685 | $Id: ChangeLog,v 1.1008 2001/03/22 02:06:57 mouring Exp $ |
@@ -33,7 +33,7 @@ | |||
33 | */ | 33 | */ |
34 | 34 | ||
35 | #include "includes.h" | 35 | #include "includes.h" |
36 | RCSID("$OpenBSD: session.c,v 1.65 2001/03/21 11:43:44 markus Exp $"); | 36 | RCSID("$OpenBSD: session.c,v 1.66 2001/03/21 21:06:30 markus Exp $"); |
37 | 37 | ||
38 | #include "ssh.h" | 38 | #include "ssh.h" |
39 | #include "ssh1.h" | 39 | #include "ssh1.h" |
@@ -1515,6 +1515,7 @@ session_new(void) | |||
1515 | s->chanid = -1; | 1515 | s->chanid = -1; |
1516 | s->ptyfd = -1; | 1516 | s->ptyfd = -1; |
1517 | s->ttyfd = -1; | 1517 | s->ttyfd = -1; |
1518 | s->tty[0] = '\0'; | ||
1518 | s->term = NULL; | 1519 | s->term = NULL; |
1519 | s->pw = NULL; | 1520 | s->pw = NULL; |
1520 | s->display = NULL; | 1521 | s->display = NULL; |