diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/appl/telnet/telnet/ChangeLog | 4 | ||||
-rw-r--r-- | src/appl/telnet/telnet/main.c | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/appl/telnet/telnet/ChangeLog b/src/appl/telnet/telnet/ChangeLog index 9c763ce65..2efc934db 100644 --- a/src/appl/telnet/telnet/ChangeLog +++ b/src/appl/telnet/telnet/ChangeLog @@ -1,3 +1,7 @@ +Sun Nov 12 04:53:17 1995 Mark W. Eichin <eichin@cygnus.com> + + * main.c: initialize line (to avoid splitting up forward.c.) + Mon Aug 7 19:39:36 1995 Theodore Y. Ts'o <tytso@dcl> * Makefile.in (SRCS): Add authenc.c to the SRCS list; authenc.o is diff --git a/src/appl/telnet/telnet/main.c b/src/appl/telnet/telnet/main.c index 1b41ee148..172a57919 100644 --- a/src/appl/telnet/telnet/main.c +++ b/src/appl/telnet/telnet/main.c @@ -107,6 +107,8 @@ usage() * main. Parse arguments, invoke the protocol or command parser. */ +/* see forward.c -- indicate that we're in telnet, not telnetd. */ +char *line = 0; main(argc, argv) int argc; |