diff options
Diffstat (limited to 'libs/libcurl/src/http_chunks.h')
-rw-r--r-- | libs/libcurl/src/http_chunks.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libs/libcurl/src/http_chunks.h b/libs/libcurl/src/http_chunks.h index e124882203..46983a50dd 100644 --- a/libs/libcurl/src/http_chunks.h +++ b/libs/libcurl/src/http_chunks.h @@ -26,7 +26,7 @@ #ifndef CURL_DISABLE_HTTP
-#include "dynbuf.h"
+#include "curlx/dynbuf.h"
struct connectdata;
@@ -49,7 +49,7 @@ typedef enum { POST_CR state. */
CHUNK_DATA,
- /* POSTLF should get a CR and then a LF and nothing else, then move back to
+ /* POSTLF should get a CR and then an LF and nothing else, then move back to
HEX as the CRLF combination marks the end of a chunk. A missing CR is no
big deal. */
CHUNK_POSTLF,
@@ -64,7 +64,7 @@ typedef enum { CHUNK_TRAILER,
/* A trailer CR has been found - next state is CHUNK_TRAILER_POSTCR.
- Next char must be a LF */
+ Next char must be an LF */
CHUNK_TRAILER_CR,
/* A trailer LF must be found now, otherwise CHUNKE_BAD_CHUNK will be
|