X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_message_api.c;h=c78c09fba31503f37ee15a439565c93202f381fe;hp=9c4d58bd904a38a3c299bee119ceab60efb71dcc;hb=19511041421e17223c6208d84e39333c62c95041;hpb=22bbc9d47c33e366c4fe7def52063a25d8aa0224 diff --git a/http_message_api.c b/http_message_api.c index 9c4d58b..c78c09f 100644 --- a/http_message_api.c +++ b/http_message_api.c @@ -6,7 +6,7 @@ | modification, are permitted provided that the conditions mentioned | | in the accompanying LICENSE file are met. | +--------------------------------------------------------------------+ - | Copyright (c) 2004-2006, Michael Wallner | + | Copyright (c) 2004-2007, Michael Wallner | +--------------------------------------------------------------------+ */ @@ -91,7 +91,7 @@ PHP_HTTP_API http_message *_http_message_init_env(http_message *message, http_me memset(&inf, 0, sizeof(http_info)); switch (inf.type = type) { case HTTP_MSG_REQUEST: - if ((sval = http_get_server_var("SERVER_PROTOCOL", 1)) && !strncmp(Z_STRVAL_P(sval), "HTTP/", lenof("HTTP/")) { + if ((sval = http_get_server_var("SERVER_PROTOCOL", 1)) && !strncmp(Z_STRVAL_P(sval), "HTTP/", lenof("HTTP/"))) { inf.http.version = atof(Z_STRVAL_P(sval) + lenof("HTTP/")); } else { inf.http.version = 1.1;