diff --git a/quark.c b/quark.c index ebfae74..d211abb 100644 --- a/quark.c +++ b/quark.c @@ -457,8 +457,6 @@ request(void) { logerrmsg("error\tread: %s\n", strerror(errno)); return -1; } - if(offset == 0) - return -2; /* empty request, ignore in log */ /* extract host and mod */ if (getreqentry("Host:", reqhost, LENGTH(reqhost), " \t\r\n") != 0) @@ -539,8 +537,7 @@ serve(int fd) { status = -1; if (result == 0) response(); - if(result != -2) - logmsg("%d\t%s\t%s\n", status, host, status == -1 ? "" : reqbuf); + logmsg("%d\t%s\t%s\n", status, host, reqbuf); shutdown(req.fd, SHUT_WR); close(req.fd); exit(EXIT_SUCCESS);