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
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