update to previous bugreport regarding the -x filetest and running
perl -S filename.
I misstated the patch necessary for turning off the executability check
for the -S option. It should be:
p5p-msgid:
337351CE.
79B28DE3@olf.com
if (retval < 0)
continue;
if (S_ISREG(statbuf.st_mode)
- && cando(S_IRUSR,TRUE,&statbuf) && cando(S_IXUSR,TRUE,&statbuf)) {
+ && cando(S_IRUSR,TRUE,&statbuf)
+#ifndef DOSISH
+ && cando(S_IXUSR,TRUE,&statbuf)
+#endif
+ ) {
xfound = tokenbuf; /* bingo! */
break;
}