diff options
Diffstat (limited to 'src/or/connection_or.c')
-rw-r--r-- | src/or/connection_or.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/or/connection_or.c b/src/or/connection_or.c index 0409791562..9f1119cf40 100644 --- a/src/or/connection_or.c +++ b/src/or/connection_or.c @@ -154,7 +154,6 @@ connection_or_read_proxy_response(or_connection_t *or_conn) char *reason=NULL; int status_code; time_t date_header; - int compression; connection_t *conn = TO_CONN(or_conn); switch (fetch_from_buf_http(conn->inbuf, @@ -171,7 +170,7 @@ connection_or_read_proxy_response(or_connection_t *or_conn) } if (parse_http_response(headers, &status_code, &date_header, - &compression, &reason) < 0) { + NULL, &reason) < 0) { log_warn(LD_OR, "Unparseable headers from proxy (connecting to '%s'). Closing.", conn->address); |