ref: cf69bb920a53a2cbecc42e4299b7ed12818d39dc
parent: 9e27ee094c25873c71da6488d7926c621c115c68
author: Alex Musolino <[email protected]>
date: Sun Aug 2 14:30:01 EDT 2020
rc-httpd: fix invalid test(1) invocation in dir-index
--- a/rc/bin/rc-httpd/handlers/dir-index
+++ b/rc/bin/rc-httpd/handlers/dir-index
@@ -6,7 +6,7 @@
error 404
exit
}
-if(! test -r $full_path -x $full_path){
+if(! test -r $full_path){
error 503
exit
}