diff options
author | Jay Satiro <raysatiro@yahoo.com> | 2020-03-18 02:51:55 -0400 |
---|---|---|
committer | Jay Satiro <raysatiro@yahoo.com> | 2020-03-18 03:39:27 -0400 |
commit | 347a374c5608c6eba80cab2c0fa560975a3368ff (patch) | |
tree | 265e8d1cd8cdd0569a13b580ac16517bfbd501d8 /lib/http2.c | |
parent | 0ae463ffd4a648fe5c3cc95c052453f3e390ce31 (diff) | |
download | curl-347a374c5608c6eba80cab2c0fa560975a3368ff.tar.gz |
http2: Fix erroneous debug message that h2 connection closed
Prior to this change in libcurl debug builds http2 stream closure was
erroneously referred to as connection closure.
Before:
* nread <= 0, server closed connection, bailing
After:
* nread == 0, stream closed, bailing
Closes https://github.com/curl/curl/pull/5118
Diffstat (limited to 'lib/http2.c')
-rw-r--r-- | lib/http2.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/http2.c b/lib/http2.c index 41d8db685..93dfbdb7d 100644 --- a/lib/http2.c +++ b/lib/http2.c @@ -1727,8 +1727,6 @@ static ssize_t http2_recv(struct connectdata *conn, int sockindex, return retlen; } - /* If this stream is closed, return 0 to signal the http routine to close - the connection */ if(stream->closed) return 0; *err = CURLE_AGAIN; |