X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_message_api.c;h=6ac56ca37d618d9ea77a6554b84254898296bc4f;hp=096ee7c7fcefd746d22874433a9049e232efd256;hb=197ec5e6c91d92a964d2b85bb43be66c21121e05;hpb=2d01dadb270b6f83e7e6ecb596f99c06b68b2ae0 diff --git a/http_message_api.c b/http_message_api.c index 096ee7c..6ac56ca 100644 --- a/http_message_api.c +++ b/http_message_api.c @@ -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), ZEND_STRL("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;