summaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
authorGravatar default2025-01-20 08:39:06 +0100
committerGravatar default2025-01-20 08:39:06 +0100
commit202d99c81529694ac3c6b524af9627404a26dd2f (patch)
treec46b1efb7284869390b93469532f962890a71cb7 /httpd.c
parentDon't notify us for our own posts from the relay. (diff)
downloadsnac2-202d99c81529694ac3c6b524af9627404a26dd2f.tar.gz
snac2-202d99c81529694ac3c6b524af9627404a26dd2f.tar.xz
snac2-202d99c81529694ac3c6b524af9627404a26dd2f.zip
Added the USER_AGENT to HTTP errors.
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/httpd.c b/httpd.c
index 7222893..eb72c6f 100644
--- a/httpd.c
+++ b/httpd.c
@@ -501,13 +501,13 @@ void httpd_connection(FILE *f)
501 } 501 }
502 502
503 if (status == HTTP_STATUS_FORBIDDEN) 503 if (status == HTTP_STATUS_FORBIDDEN)
504 body = xs_str_new("<h1>403 Forbidden</h1>"); 504 body = xs_str_new("<h1>403 Forbidden (" USER_AGENT ")</h1>");
505 505
506 if (status == HTTP_STATUS_NOT_FOUND) 506 if (status == HTTP_STATUS_NOT_FOUND)
507 body = xs_str_new("<h1>404 Not Found</h1>"); 507 body = xs_str_new("<h1>404 Not Found (" USER_AGENT ")</h1>");
508 508
509 if (status == HTTP_STATUS_BAD_REQUEST && body != NULL) 509 if (status == HTTP_STATUS_BAD_REQUEST && body != NULL)
510 body = xs_str_new("<h1>400 Bad Request</h1>"); 510 body = xs_str_new("<h1>400 Bad Request (" USER_AGENT ")</h1>");
511 511
512 if (status == HTTP_STATUS_SEE_OTHER) 512 if (status == HTTP_STATUS_SEE_OTHER)
513 headers = xs_dict_append(headers, "location", body); 513 headers = xs_dict_append(headers, "location", body);