[BACK]Return to genget.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libtelnet

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/lib/libtelnet/genget.c between version 1.10 and 1.11

version 1.10, 2004/10/27 19:59:24 version 1.11, 2004/10/28 21:14:52
Line 42  __RCSID("$NetBSD$");
Line 42  __RCSID("$NetBSD$");
 #include <ctype.h>  #include <ctype.h>
 #include "misc.h"  #include "misc.h"
   
 #define LOWER(x) (isupper(x & 0xff) ? tolower(x & 0xff) : (x))  #define LOWER(x) (isupper((unsigned char)x) ? tolower((unsigned char)x) : (x))
 /*  /*
  * The prefix function returns 0 if *s1 is not a prefix   * The prefix function returns 0 if *s1 is not a prefix
  * of *s2.  If *s1 exactly matches *s2, the negative of   * of *s2.  If *s1 exactly matches *s2, the negative of

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

CVSweb <webmaster@jp.NetBSD.org>