summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/reqs.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/reqs.c b/src/reqs.c
index 66aafca..282d014 100644
--- a/src/reqs.c
+++ b/src/reqs.c
@@ -506,8 +506,8 @@ static int send_ssl_response (struct conn_s *connptr)
* Break the request line apart and figure out where to connect and
* build a new request line. Finally connect to the remote server.
*/
-static struct request_s *
-process_request (struct conn_s *connptr)
+static struct request_s *process_request (struct conn_s *connptr,
+ hashmap_t hashofheaders)
{
char *url;
struct request_s *request;
@@ -1603,7 +1603,7 @@ void handle_connection (int fd)
return;
}
- request = process_request (connptr);
+ request = process_request (connptr, hashofheaders);
if (!request) {
if (!connptr->error_variables && !connptr->show_stats) {
update_stats (STAT_BADCONN);