Subject: Re: telnet problem
To: None <current-users@NetBSD.ORG>
From: Ty Sarna <tsarna@endicor.com>
List: current-users
Date: 06/29/1998 22:36:36
In article <199806292048.QAA27547@ginger.cmf.nrl.navy.mil>,
Ken Hornstein  <kenh@cmf.nrl.navy.mil> wrote:
> Alternatively, you could always get a new Mac telnet client :-/

I see the same thing with the NetBSD telnet client. But here's something
interesting:

----------

fezzik$ uname -m
i386
fezzik$ telnet localhost
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
[...]
fezzik$ hexdump
[I type return, ^D]
0000000 000a                                   
0000001

----------

lotharon$ uname -m
sun3
lotharon$ telnet localhost
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
[...]
lotharon$ hexdump
[I type return, ^D]
0000000 0a00                                   
0000001

----------

000a vs 0a00, on different endian systems. Hmmmmmmm....