[BACK]Return to telnet.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / telnet

Diff for /src/usr.bin/telnet/telnet.c between version 1.22 and 1.23

version 1.22, 2014/07/20 03:00:31 version 1.23, 2014/07/20 06:39:41
Line 31 
Line 31 
  */   */
   
 #include "telnet_locl.h"  #include "telnet_locl.h"
   
   #include <ctype.h>
 #include <curses.h>  #include <curses.h>
 #include <term.h>  #include <term.h>
   
Line 528 
Line 530 
 #define ISASCII(c) (!((c)&0x80))  #define ISASCII(c) (!((c)&0x80))
                 if ((c == ' ') || !ISASCII(c))                  if ((c == ' ') || !ISASCII(c))
                         n = 1;                          n = 1;
                 else if (islower(c))                  else
                         *cp = toupper(c);                          *cp = toupper((unsigned char)c);
         }          }
   
         /*          /*

Legend:
Removed from v.1.22  
changed lines
  Added in v.1.23