quark

quark web server
git clone git://git.suckless.org/quark
Log | Files | Refs | LICENSE

commit 102cf09cc580066c2382abdc627739e5d4437071
parent 241449454fa3edbc3dc142dd52f75c5ccc2a6d05
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Tue, 27 Jun 2017 21:36:52 +0200

add newline after </html>

Diffstat:
Mquark.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/quark.c b/quark.c @@ -158,7 +158,7 @@ sendstatus(int fd, enum status s) "\r\n" "<!DOCTYPE html>\n<html>\n\t<head>\n" "\t\t<title>%d %s</title>\n\t</head>\n\t<body>\n" - "\t\t<h1>%d %s</h1>\n\t</body>\n</html>", + "\t\t<h1>%d %s</h1>\n\t</body>\n</html>\n", s, status_str[s], timestamp(0, t), (s == S_METHOD_NOT_ALLOWED) ? "Allow: HEAD, GET\r\n" : "", s, status_str[s], s, status_str[s]) < 0) { @@ -362,7 +362,7 @@ senddir(int fd, char *name, struct request *r) } /* listing footer */ - if (dprintf(fd, "\n\t</body>\n</html>") < 0) { + if (dprintf(fd, "\n\t</body>\n</html>\n") < 0) { return S_REQUEST_TIMEOUT; } }