From 89ee91db82e68bfca00314ec7c6c37f23a691845 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Mon, 17 Sep 2001 02:05:12 +0000 Subject: [PATCH] undef PUTSHORT to avoid conflict git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@10710 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/telnet/telnet/telnet.c | 1 + 1 file changed, 1 insertion(+) diff --git a/appl/telnet/telnet/telnet.c b/appl/telnet/telnet/telnet.c index 96e6403f4..a7a9d9397 100644 --- a/appl/telnet/telnet/telnet.c +++ b/appl/telnet/telnet/telnet.c @@ -2286,6 +2286,7 @@ sendnaws() if (my_state_is_wont(TELOPT_NAWS)) return; +#undef PUTSHORT #define PUTSHORT(cp, x) { if ((*cp++ = ((x)>>8)&0xff) == IAC) *cp++ = IAC; \ if ((*cp++ = ((x))&0xff) == IAC) *cp++ = IAC; }