summaryrefslogtreecommitdiffstats
path: root/lib/libfetch/http.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libfetch/http.c')
-rw-r--r--lib/libfetch/http.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libfetch/http.c b/lib/libfetch/http.c
index 0505b0a..1767080 100644
--- a/lib/libfetch/http.c
+++ b/lib/libfetch/http.c
@@ -130,7 +130,7 @@ _http_new_chunk(struct cookie *c)
if (_fetch_getln(c->conn) == -1)
return (-1);
- if (c->b_len < 2 || !ishexnumber(*c->conn->buf))
+ if (c->conn->buflen < 2 || !ishexnumber(*c->conn->buf))
return (-1);
for (p = c->conn->buf; *p && !isspace(*p); ++p) {
OpenPOWER on IntegriCloud