Re: mod_jk pointer error for i5/OS V5R4

2007-07-03 Thread Henri Gomez
What about doing ? unsigned char ch; while (*p) { ch = (unsigned char)*p++; header[i++] = toupper(ch); } 2007/7/3, Ron Egyed <[EMAIL PROTECTED]>: FYI, The following code in the sc_for_req_header function in module jk_ajp_common was getting a pointer error on version V5R4 of i

mod_jk pointer error for i5/OS V5R4

2007-07-03 Thread Ron Egyed
FYI, The following code in the sc_for_req_header function in module jk_ajp_common was getting a pointer error on version V5R4 of i5/OS (AS400). while (*p) header[i++] = toupper((unsigned char)*p++); IBM provided two solutions to this problem. I tried the 2nd solution of wrapping the toupp