diff options
author | peter <peter@FreeBSD.org> | 2001-05-15 09:52:03 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2001-05-15 09:52:03 +0000 |
commit | 6125cb47e354f8e71ec9dc19c0688d6c7b46a588 (patch) | |
tree | bf2989cee87a754e4f0edbba87223c7d8a72fe14 /crypto | |
parent | fdbffc1f35c3ac4da603ef03a69423c54ca6f99f (diff) | |
download | FreeBSD-src-6125cb47e354f8e71ec9dc19c0688d6c7b46a588.zip FreeBSD-src-6125cb47e354f8e71ec9dc19c0688d6c7b46a588.tar.gz |
Hack to work around braindeath in libtelnet:sra.c. The sra.o file
references global variables from telnetd, but is also linked into
telnet as well. I was tempted to back out the last sra.c change
as it is 100% bogus and should be taken out and shot, but for now
this bandaid should get world working again. :-(
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/telnet/telnet/telnet.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crypto/telnet/telnet/telnet.c b/crypto/telnet/telnet/telnet.c index 45df4ed..68555b7 100644 --- a/crypto/telnet/telnet/telnet.c +++ b/crypto/telnet/telnet/telnet.c @@ -126,6 +126,7 @@ int clienteof = 0; char *prompt = 0; +char *line; /* hack around breakage in sra.c :-( !! */ cc_t escape; cc_t rlogin; |