small style and CGI message fix

This commit is contained in:
Hiltjo Posthuma 2014-08-14 17:07:33 +00:00 committed by FRIGN
parent bd9d7e3493
commit 159cdb3e0b

View file

@ -335,8 +335,8 @@ responsecgi(void) {
}
pclose(cgi);
} else {
logerrmsg("error\t%s requests %s, but cannot run cgi script %s\n",
host, cgi_script, reqbuf);
logerrmsg("error\t%s requests %s, but cannot run cgi script %s: %s\n",
host, reqbuf, cgi_script, strerror(errno));
if (putresentry(HEADER, HttpNotFound, tstamp(0))
|| putresentry(CONTENTTYPE, texthtml))
return;
@ -351,7 +351,7 @@ response(void) {
char *p;
struct stat st;
for (p = reqbuf; *p; p++)
for (p = reqbuf; *p; p++) {
if (*p == '\\' || (*p == '/' && *(p + 1) == '.')) {
/* don't serve bogus or hidden files */
if (putresentry(HEADER, HttpForbidden, tstamp(0))
@ -362,6 +362,8 @@ response(void) {
writetext("\r\n<html><body>"HttpForbidden"</body></html>\r\n");
return;
}
}
if (cgi_mode) {
responsecgi();
} else {