summaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/httpd.c b/httpd.c
index 7cd73cc..8e798a4 100644
--- a/httpd.c
+++ b/httpd.c
@@ -109,6 +109,9 @@ void httpd_connection(int rs)
109 /* cascade through */ 109 /* cascade through */
110 if (status == 0) 110 if (status == 0)
111 server_get_handler(req, q_path, &status, &body, &b_size, &ctype); 111 server_get_handler(req, q_path, &status, &body, &b_size, &ctype);
112
113 if (status == 0)
114 webfinger_get_handler(req, q_path, &status, &body, &b_size, &ctype);
112 } 115 }
113 else 116 else
114 if (strcmp(method, "POST") == 0) { 117 if (strcmp(method, "POST") == 0) {