mirror of
https://github.com/emikulic/darkhttpd.git
synced 2023-08-10 21:13:08 +03:00
Tidy up UTF-8 after merge.
This commit is contained in:
parent
4d34abd3c9
commit
955762645d
@ -1470,7 +1470,7 @@ static void default_reply(struct connection *conn,
|
||||
"Accept-Ranges: bytes\r\n"
|
||||
"%s" /* keep-alive */
|
||||
"Content-Length: %llu\r\n"
|
||||
"Content-Type: text/html; charset=utf-8\r\n"
|
||||
"Content-Type: text/html; charset=UTF-8\r\n"
|
||||
"\r\n",
|
||||
errcode, errname, date, server_hdr, keep_alive(conn),
|
||||
llu(conn->reply_length));
|
||||
@ -1509,7 +1509,7 @@ static void redirect(struct connection *conn, const char *format, ...) {
|
||||
"Location: %s\r\n"
|
||||
"%s" /* keep-alive */
|
||||
"Content-Length: %llu\r\n"
|
||||
"Content-Type: text/html; charset=utf-8\r\n"
|
||||
"Content-Type: text/html; charset=UTF-8\r\n"
|
||||
"\r\n",
|
||||
date, server_hdr, where, keep_alive(conn), llu(conn->reply_length));
|
||||
|
||||
@ -1810,7 +1810,7 @@ static void generate_dir_listing(struct connection *conn, const char *path) {
|
||||
}
|
||||
|
||||
listing = make_apbuf();
|
||||
append(listing, "<html>\n<head>\n<meta charset=\"utf-8\"/>\n<title>");
|
||||
append(listing, "<html>\n<head>\n <title>");
|
||||
append(listing, conn->url);
|
||||
append(listing, "</title>\n</head>\n<body>\n<h1>");
|
||||
append(listing, conn->url);
|
||||
|
Loading…
Reference in New Issue
Block a user