diff options
author | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-03-29 13:09:05 +0100 |
---|---|---|
committer | Rodrigo Arias Mallo <rodarima@gmail.com> | 2024-03-29 15:46:24 +0100 |
commit | b1b45ba0c4b22cf4a67cec965749029a10484e89 (patch) | |
tree | 9e8647f2993da3b6225f804ca99cc0769c07e641 | |
parent | c980e011ebf919f0d79e9a1c29eb82258c14719c (diff) |
Fix HTML doctype tagencode-ampersand
-rw-r--r-- | gopher.filter.dpi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gopher.filter.dpi.c b/gopher.filter.dpi.c index c4700a0..0728c3e 100644 --- a/gopher.filter.dpi.c +++ b/gopher.filter.dpi.c @@ -378,7 +378,7 @@ static void read_data(int s) { static void render_dir(int s, const char *url) { dpi_send_header(url, "text/html"); - printf("<doctype html>"); + printf("<!DOCTYPE html>"); printf("<html><head><title>"); print_htmlenc(url); printf("</title></head><body><table>"); |