summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--httpd.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/httpd.c b/httpd.c
index af78e09..9216bdc 100644
--- a/httpd.c
+++ b/httpd.c
@@ -380,6 +380,12 @@ int server_post_handler(const xs_dict *req, const char *q_path,
380{ 380{
381 int status = 0; 381 int status = 0;
382 382
383 (void)payload;
384 (void)p_size;
385 (void)body;
386 (void)b_size;
387 (void)ctype;
388
383 if (strcmp(q_path, "/webmention-hook") == 0) { 389 if (strcmp(q_path, "/webmention-hook") == 0) {
384 status = HTTP_STATUS_BAD_REQUEST; 390 status = HTTP_STATUS_BAD_REQUEST;
385 391