summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-03-22 02:06:57 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-03-22 02:06:57 +0000
commitd9267454caaa0fefd71a12aaa4288ee72b984292 (patch)
treee547fa2766518b354b3fbbd01f4501f6f7ce19f6
parentf1107f5ede21a2c75b0036a444728047d39132a8 (diff)
downloadopenssh-git-d9267454caaa0fefd71a12aaa4288ee72b984292.tar.gz
- markus@cvs.openbsd.org 2001/03/21 21:06:30
[session.c] missing init; from mib@unimelb.edu.au
-rw-r--r--ChangeLog5
-rw-r--r--session.c3
2 files changed, 6 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index f0fcdc61..7522d909 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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 $
diff --git a/session.c b/session.c
index 757ea90d..3ec97d0d 100644
--- a/session.c
+++ b/session.c
@@ -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;