From 519b3133fd556a2952372f736c42a6e81ef7ce6b Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Wed, 28 Jan 1998 22:22:50 +0000 Subject: [PATCH] * telnetd.c (doit): additional fix for previous terminaltype change (fixes a bug that caused TERM to be set to "") git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@10384 dc483132-0cff-0310-8789-dd5450dbe970 --- src/appl/telnet/telnetd/ChangeLog | 4 ++++ src/appl/telnet/telnetd/telnetd.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/appl/telnet/telnetd/ChangeLog b/src/appl/telnet/telnetd/ChangeLog index 633002839..31eaf8e47 100644 --- a/src/appl/telnet/telnetd/ChangeLog +++ b/src/appl/telnet/telnetd/ChangeLog @@ -1,3 +1,7 @@ +Wed Jan 28 17:21:08 1998 Dan Winship + + * telnetd.c (doit): additional fix for previous terminaltype change + Tue Jan 27 18:27:16 1998 Dan Winship * telnetd.c (getterminaltype): Null-terminate strings and avoid a diff --git a/src/appl/telnet/telnetd/telnetd.c b/src/appl/telnet/telnetd/telnetd.c index dceaab7b3..54fc12a39 100644 --- a/src/appl/telnet/telnetd/telnetd.c +++ b/src/appl/telnet/telnetd/telnetd.c @@ -974,7 +974,7 @@ pty_init(); */ *user_name = 0; level = getterminaltype(user_name); - setenv("TERM", terminaltype ? terminaltype : "network", 1); + setenv("TERM", *terminaltype ? terminaltype : "network", 1); /* * Start up the login process on the slave side of the terminal -- 2.26.2