- fix build failure when strncmp() is a macro
[m6w6/ext-http] / http_message_api.c
index 096ee7c7fcefd746d22874433a9049e232efd256..9c4d58bd904a38a3c299bee119ceab60efb71dcc 100644 (file)
@@ -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;