head 1.1; access; symbols OPENPKG_E1_MP_HEAD:1.1 OPENPKG_E1_MP:1.1 OPENPKG_E1_MP_2_STABLE:1.1 OPENPKG_E1_FP:1.1 OPENPKG_2_STABLE_MP:1.1 OPENPKG_2_STABLE_20061018:1.1 OPENPKG_2_STABLE_20060622:1.1 OPENPKG_2_STABLE:1.1.0.4 OPENPKG_2_STABLE_BP:1.1 OPENPKG_2_5_RELEASE:1.1 OPENPKG_2_5_SOLID:1.1.0.2 OPENPKG_2_5_SOLID_BP:1.1 OPENPKG_CW_FP:1.1; locks; strict; comment @# @; 1.1 date 2003.10.24.14.33.53; author cs; state Exp; branches; next ; desc @@ 1.1 log @modifying package: ecartis-1.0.0.20030814 20031024 again @ text @--- src/modules/bouncer/custom.c.orig Mon Oct 14 08:45:07 2002 +++ src/modules/bouncer/custom.c Thu Nov 28 15:51:50 2002 @@@@ -419,13 +419,13 @@@@ strncpy(errorstr, pbase, ssize); errorstr[ssize] = '\0'; - if (!isdigit(errorstr[0])) { + if (!isdigit((int)(errorstr[0]))) { handle_error(550, useraddy, errorstr, outfilename); LMAPI->write_file(outfile, "User: %s:\n (%d) %s\n\n", useraddy, 550, errorstr); } else { errcode = atoi(errorstr); - for (errstr = errorstr; *errstr && isdigit(*errstr); errstr++); + for (errstr = errorstr; *errstr && isdigit((int)(*errstr)); errstr++); if (*errstr) ++errstr; handle_error(errcode, useraddy, errstr, outfilename); LMAPI->write_file(outfile, "User: %s:\n (%d) %s\n\n", useraddy, errcode, errstr); @