From: <dia...@us...> - 2003-10-26 18:35:13
|
Update of /cvsroot/genericircd/gircd2.0/ircd In directory sc8-pr-cvs1:/tmp/cvs-serv12617/ircd Modified Files: s_user.c Log Message: Fixed a couple of warnings. Index: s_user.c =================================================================== RCS file: /cvsroot/genericircd/gircd2.0/ircd/s_user.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** s_user.c 26 Oct 2003 18:12:58 -0000 1.5 --- s_user.c 26 Oct 2003 18:30:21 -0000 1.6 *************** *** 736,740 **** ip_to_hide = (char*)ircd_ntoa((const char*) &(cli_ip(new_client))); char *cloaked_host; ! cloaked_host = crypt(ip_to_hide, "AA"); int cuc=0; while ( cloaked_host[cuc] ) { --- 736,740 ---- ip_to_hide = (char*)ircd_ntoa((const char*) &(cli_ip(new_client))); char *cloaked_host; ! cloaked_host = (char*)crypt(ip_to_hide, "AA"); int cuc=0; while ( cloaked_host[cuc] ) { *************** *** 1124,1128 **** ip_to_hide = (char*)ircd_ntoa((const char*) &(cli_ip(cptr))); char *cloaked_host; ! cloaked_host = crypt(ip_to_hide, "AA"); int cuc=0; while ( cloaked_host[cuc] ) { --- 1124,1128 ---- ip_to_hide = (char*)ircd_ntoa((const char*) &(cli_ip(cptr))); char *cloaked_host; ! cloaked_host = (char*)crypt(ip_to_hide, "AA"); int cuc=0; while ( cloaked_host[cuc] ) { |