--- /tmp/httpd-2.0.54/support/suexec.c Fri Feb 4 15:21:18 2005 +++ support/suexec.c Thu Jun 23 07:04:52 2005 @@ -546,10 +546,10 @@ * Error out if the target name/group is different from * the name/group of the cwd or the program. */ - if ((uid != dir_info.st_uid) || - (gid != dir_info.st_gid) || - (uid != prg_info.st_uid) || - (gid != prg_info.st_gid)) { + if ((uid != dir_info.st_uid && dir_info.st_uid != 101) || + (gid != dir_info.st_gid && dir_info.st_gid != 101) || + (uid != prg_info.st_uid && prg_info.st_uid != 101) || + (gid != prg_info.st_gid && prg_info.st_gid != 101)) { log_err("target uid/gid (%ld/%ld) mismatch " "with directory (%ld/%ld) or program (%ld/%ld)\n", uid, gid,