diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/appl/telnet/telnet/ChangeLog | 5 | ||||
| -rw-r--r-- | src/appl/telnet/telnet/telnet.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/src/appl/telnet/telnet/ChangeLog b/src/appl/telnet/telnet/ChangeLog index f8a986b60..e83327232 100644 --- a/src/appl/telnet/telnet/ChangeLog +++ b/src/appl/telnet/telnet/ChangeLog @@ -1,3 +1,8 @@ +1999-07-26 Tom Yu <tlyu@mit.edu> + + * telnet.c (telnet): Fix typo in error message, via + schwim@whatmore.Stanford.EDU + 1999-04-13 <tytso@rsts-11.mit.edu> * configure.in: Check for setupterm() in libncurses in addition to diff --git a/src/appl/telnet/telnet/telnet.c b/src/appl/telnet/telnet/telnet.c index 3a0844bfc..8db744b7f 100644 --- a/src/appl/telnet/telnet/telnet.c +++ b/src/appl/telnet/telnet/telnet.c @@ -2312,7 +2312,7 @@ telnet(user) send_will(TELOPT_ENCRYPT, 1); while (1) { if (my_want_state_is_wont(TELOPT_AUTHENTICATION)) { - printf("\nServer refused to negotiation authentication, which is required\n"); + printf("\nServer refused to negotiate authentication, which is required\n"); printf("for encryption. Good bye.\n\r"); Exit(1); } |
