Skip to content

Commit

Permalink
Changed types to unsigned char for no-echo stuff.
Browse files Browse the repository at this point in the history
  • Loading branch information
jgdavidson committed Oct 13, 2000
1 parent 70fc24d commit ac348ff
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions nscp/nscp.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
* Tcl commands.
*/

static const char *RCSID = "@(#) $Header: /Users/dossy/Desktop/cvs/aolserver/nscp/nscp.c,v 1.9 2000/10/09 23:21:01 kriston Exp $, compiled: " __DATE__ " " __TIME__;
static const char *RCSID = "@(#) $Header: /Users/dossy/Desktop/cvs/aolserver/nscp/nscp.c,v 1.10 2000/10/13 00:48:24 jgdavidson Exp $, compiled: " __DATE__ " " __TIME__;

#include "ns.h"

Expand Down Expand Up @@ -76,10 +76,10 @@ static Ns_ArgProc ArgProc;
#define TN_IP 244
#define TN_ECHO 1

static char do_echo[] = {TN_IAC, TN_DO, TN_ECHO};
static char dont_echo[] = {TN_IAC, TN_DONT, TN_ECHO};
static char will_echo[] = {TN_IAC, TN_WILL, TN_ECHO};
static char wont_echo[] = {TN_IAC, TN_WONT, TN_ECHO};
static unsigned char do_echo[] = {TN_IAC, TN_DO, TN_ECHO};
static unsigned char dont_echo[] = {TN_IAC, TN_DONT, TN_ECHO};
static unsigned char will_echo[] = {TN_IAC, TN_WILL, TN_ECHO};
static unsigned char wont_echo[] = {TN_IAC, TN_WONT, TN_ECHO};

NS_EXPORT int Ns_ModuleVersion = 1;

Expand Down

0 comments on commit ac348ff

Please sign in to comment.