diff options
author | Andrew Alderwick <andrew@alderwick.co.uk> | 2022-12-20 21:16:51 +0000 |
---|---|---|
committer | Andrew Alderwick <andrew@alderwick.co.uk> | 2022-12-20 21:16:51 +0000 |
commit | 75d0b1a93260839052a5ed5ad4e64c9e3e420c63 (patch) | |
tree | 2d0178d1da8bea08a747cdae2f57611db7fc715b /xs_httpd.h | |
parent | 61bdccb8ccbe368c707492bb888c6aeb7856e793 (diff) |
Fix 500 errors in (OpenBSD) relayd.
Diffstat (limited to 'xs_httpd.h')
-rw-r--r-- | xs_httpd.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -264,7 +264,7 @@ void xs_httpd_response(FILE *f, int status, d_char *headers, char *body, int b_s xs *proto; char *p, *k, *v; - proto = xs_fmt("HTTP/1.1 %d", status); + proto = xs_fmt("HTTP/1.1 %d ", status); fprintf(f, "%s\r\n", proto); p = headers; |