From: Petr Sumbera Date: Wed, 7 Oct 2020 13:07:23 +0000 (+0200) Subject: Make iconv errno support test pass on Solaris. X-Git-Tag: php-7.3.24RC1~10 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=07a4185df1471fe074c5b5212ae3eefe493c3cbb;p=php Make iconv errno support test pass on Solaris. Closes GH-6291. --- diff --git a/ext/iconv/config.m4 b/ext/iconv/config.m4 index 71583e02c9..147c19dc78 100644 --- a/ext/iconv/config.m4 +++ b/ext/iconv/config.m4 @@ -129,7 +129,7 @@ int main() { int main() { iconv_t cd; - cd = iconv_open( "*blahblah*", "*blahblah*" ); + cd = iconv_open( "*blahblah*", "*blahblahblah*" ); if (cd == (iconv_t)(-1)) { if (errno == EINVAL) { return 0;