diff options
author | Florian Obser <florian@cvs.openbsd.org> | 2021-05-15 15:08:32 +0000 |
---|---|---|
committer | Florian Obser <florian@cvs.openbsd.org> | 2021-05-15 15:08:32 +0000 |
commit | afaffa814f431d3c7690d884cfb7f06bb47b9d1e (patch) | |
tree | 99b8df62b1bb57359da5a8002ec9045690dc1ed9 /usr.sbin | |
parent | f0b23b1a9f301ae261346433e4a1273e8ffdff8d (diff) |
Remove outdated comment. We got all httpd headers from the fcgi server
at this point.
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/httpd/server_fcgi.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/httpd/server_fcgi.c b/usr.sbin/httpd/server_fcgi.c index 8d3b581568f..eb142add48c 100644 --- a/usr.sbin/httpd/server_fcgi.c +++ b/usr.sbin/httpd/server_fcgi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: server_fcgi.c,v 1.84 2020/09/12 07:34:17 yasuoka Exp $ */ +/* $OpenBSD: server_fcgi.c,v 1.85 2021/05/15 15:08:31 florian Exp $ */ /* * Copyright (c) 2014 Florian Obser <florian@openbsd.org> @@ -660,7 +660,6 @@ server_fcgi_header(struct client *clt, unsigned int code) kv_add(&resp->http_headers, "Date", tmbuf) == NULL)) return (-1); - /* Write initial header (fcgi might append more) */ if (server_writeresponse_http(clt) == -1 || server_bufferevent_print(clt, "\r\n") == -1 || server_headers(clt, resp, server_writeheader_http, NULL) == -1 || |