From d2095105de3fe8c3397df7d46a9d61011b74c09e Mon Sep 17 00:00:00 2001 From: default Date: Mon, 24 Oct 2022 20:06:02 +0200 Subject: Don't load unneeded actor info in html_entry(). --- httpd.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'httpd.c') diff --git a/httpd.c b/httpd.c index a365b4d..d7fad93 100644 --- a/httpd.c +++ b/httpd.c @@ -98,14 +98,14 @@ void httpd_connection(FILE *f) { xs *req; char *method; - int status = 0; - char *body = NULL; - int b_size = 0; - char *ctype = NULL; - xs *headers = NULL; - xs *q_path = NULL; - xs *payload = NULL; - int p_size = 0; + int status = 0; + d_char *body = NULL; + int b_size = 0; + char *ctype = NULL; + xs *headers = NULL; + xs *q_path = NULL; + xs *payload = NULL; + int p_size = 0; char *p; req = xs_httpd_request(f, &payload, &p_size); -- cgit v1.2.3