From 300df6a8f143471815daf9edaa59ca8b838b0227 Mon Sep 17 00:00:00 2001 From: des Date: Wed, 5 Jun 2002 10:23:19 +0000 Subject: Fix a bug I introduced in the chunk decoder in the previous commit.. --- lib/libfetch/http.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/libfetch/http.c') 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) { -- cgit v1.1