[srvx-commits] CVS: services/src tools.c,1.120,1.121
Brought to you by:
entrope
|
From: Entrope <en...@us...> - 2003-06-02 03:28:12
|
Update of /cvsroot/srvx/services/src In directory sc8-pr-cvs1:/tmp/cvs-serv6262/src Modified Files: tools.c Log Message: for matching, use irc_tolower(x) instead of C's tolower() Index: tools.c =================================================================== RCS file: /cvsroot/srvx/services/src/tools.c,v retrieving revision 1.120 retrieving revision 1.121 diff -C2 -r1.120 -r1.121 *** tools.c 17 Dec 2002 20:24:56 -0000 1.120 --- tools.c 2 Jun 2003 03:28:06 -0000 1.121 *************** *** 81,84 **** --- 81,86 ---- static unsigned char irc_tolower[256]; + #undef tolower + #define tolower(X) irc_tolower[(unsigned char)(X)] int |