diff options
author | Daniel Stenberg <daniel@haxx.se> | 2020-03-05 23:52:41 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-03-06 08:15:35 +0100 |
commit | 6f17df7a6afcc600d96fb02d125aa2932540eff1 (patch) | |
tree | f162292577170fee5966c0dd0f5d78620795d08f /lib/urldata.h | |
parent | 8aa04e9a24932b830bc5eaf6838dea5a3329341e (diff) | |
download | curl-6f17df7a6afcc600d96fb02d125aa2932540eff1.tar.gz |
urldata: remove the 'stream_was_rewound' connectdata struct member
... as it is never set anywhere.
Follow-up to 2f44e94ef
Closes #5046
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index e1348cf29..9e4626530 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -464,8 +464,6 @@ struct ConnectBits { #endif BIT(netrc); /* name+password provided by netrc */ BIT(userpwd_in_url); /* name+password found in url */ - BIT(stream_was_rewound); /* The stream was rewound after a request read - past the end of its response byte boundary */ BIT(proxy_connect_closed); /* TRUE if a proxy disconnected the connection in a CONNECT request with auth, so that libcurl should reconnect and continue. */ |