X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=php_http_url.h;h=cc663acaa2edc7ae68487948807a851f648d84b2;hp=a482d2382184f8269015cf7a788df166c32059a6;hb=58410541834f8f897291c290d38e7a505dbb93c1;hpb=bd80b17b026a00a254ee8693cd7bacf1ebdec4cf diff --git a/php_http_url.h b/php_http_url.h index a482d23..cc663ac 100644 --- a/php_http_url.h +++ b/php_http_url.h @@ -41,10 +41,7 @@ PHP_HTTP_API STATUS php_http_url_encode_hash_ex(HashTable *ht, php_http_buffer_t static inline void php_http_url_argsep(const char **str, size_t *len TSRMLS_DC) { - *str = INI_STR("arg_separator.output"); - *len = strlen(*str); - - if (!*len) { + if (SUCCESS != php_http_ini_entry(ZEND_STRL("arg_separator.output"), str, len, 0 TSRMLS_CC) || !*len) { *str = PHP_HTTP_URL_ARGSEP; *len = lenof(PHP_HTTP_URL_ARGSEP); }