- typo
[m6w6/ext-http] / http_functions.c
index 4e67be7aee3fac005c0e2f083d096c94e0986b60..a46d02883b1dc9bc5d2487bc9a54c4ee2a020b06 100644 (file)
 #ifdef HAVE_CONFIG_H
 #      include "config.h"
 #endif
-
 #include "php.h"
+
+#include "SAPI.h"
 #include "php_ini.h"
 #include "ext/standard/info.h"
 #include "ext/session/php_session.h"
 #include "ext/standard/php_string.h"
 
-#include "SAPI.h"
-
-#include "phpstr/phpstr.h"
-
 #include "php_http.h"
 #include "php_http_std_defs.h"
 #include "php_http_api.h"
@@ -42,6 +39,8 @@
 #include "php_http_send_api.h"
 #include "php_http_url_api.h"
 
+#include "phpstr/phpstr.h"
+
 ZEND_EXTERN_MODULE_GLOBALS(http)
 
 /* {{{ proto string http_date([int timestamp])
@@ -675,7 +674,7 @@ PHP_FUNCTION(http_get_request_body)
        NO_ARGS;
 
        if (SUCCESS == http_get_request_body(&body, &length)) {
-               RETURN_STRING(body, (int) length, 0);
+               RETURN_STRINGL(body, (int) length, 0);
        } else {
                RETURN_NULL();
        }