This code: "if ( !strncasecmp(ctcp_buf, "DCC ", msglen) )" not work for me, because it never enter in the if. I'm on windows 7. I have fix this with: "if ( strncmp (ctcp_buf, "DCC ", 4 ) == 0 )".
Log in to post a comment.