diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-08-12 19:36:56 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-08-16 09:33:12 +0200 |
commit | 09da53998e04f2a375c6cafee6a4768a997d64fa (patch) | |
tree | 20ee57e9482d88d3dcabe661433f9513c8d2096f /lib/urldata.h | |
parent | 099f37e9c5779a5701735b40e7e4b09ce33a4786 (diff) | |
download | curl-09da53998e04f2a375c6cafee6a4768a997d64fa.tar.gz |
urldata: remove unused pipe_broke struct field
This struct field is never set TRUE in any existing code path. This
change removes the field completely.
Closes #2871
Diffstat (limited to 'lib/urldata.h')
-rw-r--r-- | lib/urldata.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/urldata.h b/lib/urldata.h index 1d309e12d..2a0540fa9 100644 --- a/lib/urldata.h +++ b/lib/urldata.h @@ -1282,9 +1282,6 @@ struct UrlState { involved in this request */ bool expect100header; /* TRUE if we added Expect: 100-continue */ - bool pipe_broke; /* TRUE if the connection we were pipelined on broke - and we need to restart from the beginning */ - #if !defined(WIN32) && !defined(MSDOS) && !defined(__EMX__) && \ !defined(__SYMBIAN32__) /* do FTP line-end conversions on most platforms */ |