From dea3a715568e3544678d84cb15ed625684f579e9 Mon Sep 17 00:00:00 2001 From: Bryan Ischo Date: Fri, 13 Feb 2009 02:01:23 +1300 Subject: * Oops, one more isblank to convert to is_blank for Windows --- src/response_headers_handler.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/response_headers_handler.c b/src/response_headers_handler.c index 14e14a0..e506ea4 100644 --- a/src/response_headers_handler.c +++ b/src/response_headers_handler.c @@ -74,17 +74,17 @@ void response_headers_handler_add(ResponseHeadersHandler *handler, // Skip whitespace at beginning of header; there never should be any, // but just to be safe - while (isblank(*header)) { + while (is_blank(*header)) { header++; } // The header must end in \r\n, so skip back over it, and also over any // trailing whitespace end -= 3; - while ((end > header) && isblank(*end)) { + while ((end > header) && is_blank(*end)) { end--; } - if (!isblank(*end)) { + if (!is_blank(*end)) { end++; } @@ -106,7 +106,7 @@ void response_headers_handler_add(ResponseHeadersHandler *handler, // Now walk c past the colon c++; // Now skip whitespace to the beginning of the value - while (isblank(*c)) { + while (is_blank(*c)) { c++; } -- cgit v1.2.1