On Tue, Feb 16, 2010, at 03:30:21 PM, Jeff Trawick <[email protected]> wrote:
>> ============================================================================== >> --- httpd/httpd/trunk/server/config.c (original) >> +++ httpd/httpd/trunk/server/config.c Tue Feb 16 20:24:33 2010 >> @@ -1670,7 +1670,7 @@ >> int current; >> >> /* find the first part of the filename */ >> - rest = ap_strchr(fname, '/'); >> + rest = ap_strchr((char*)fname, '/'); > > Casting isn't the right fix, which I guess is to make rest const char > * and then use ap_strchr_c() instead of ap_strchr() (hopefully that > doesn't snowball). Thanks, that works without snowballing.
