Skip to content

Commit 8565752

Browse files
committed
Nits
1 parent 86293d4 commit 8565752

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ext/curl/interface.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1112,7 +1112,7 @@ static void _php_curl_set_default_options(php_curl *ch)
11121112
curl_easy_setopt(ch->cp, CURLOPT_DNS_CACHE_TIMEOUT, 120L);
11131113
curl_easy_setopt(ch->cp, CURLOPT_MAXREDIRS, 20L); /* prevent infinite redirects */
11141114

1115-
const char* cainfo = zend_ini_string_literal("openssl.cafile");
1115+
const char *cainfo = zend_ini_string_literal("openssl.cafile");
11161116
if (!(cainfo && cainfo[0] != '\0')) {
11171117
cainfo = zend_ini_string_literal("curl.cainfo");
11181118
}

ext/tidy/tidy.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -873,7 +873,7 @@ static PHP_RINIT_FUNCTION(tidy)
873873

874874
static PHP_RSHUTDOWN_FUNCTION(tidy)
875875
{
876-
TG(clean_output) = zend_ini_parse_bool(zend_ini_str(ZEND_STRL("tidy.clean_output"), true));
876+
TG(clean_output) = zend_ini_parse_bool(zend_ini_str(ZEND_STRL("tidy.clean_output"), /* orig */ true));
877877

878878
return SUCCESS;
879879
}

0 commit comments

Comments
 (0)