/*
- * $Id: client_side.cc,v 1.343 1998/07/04 18:55:22 rousskov Exp $
+ * $Id: client_side.cc,v 1.344 1998/07/09 19:21:00 rousskov Exp $
*
* DEBUG: section 33 Client-side Routines
* AUTHOR: Duane Wessels
token = strtok(NULL, null_string);
for (t = token; t && *t && *t != '\n' && *t != '\r'; t++);
- if (t == NULL || *t == '\0' || t == token || strncmp(token, "HTTP/", 5)) {
+ if (t == NULL || *t == '\0' || t == token || strncasecmp(token, "HTTP/", 5)) {
debug(33, 3) ("parseHttpRequest: Missing HTTP identifier\n");
#if RELAXED_HTTP_PARSER
http_ver = (float) 0.9; /* wild guess */