From: Andrey Hristov Date: Mon, 11 Jan 2010 18:40:11 +0000 (+0000) Subject: this function should be exporten in all cases, not only under PHP6 X-Git-Tag: php-5.4.0alpha1~191^2~2104 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9831a18d17d1a637b8f7ecc184907e1e0b1c02b7;p=php this function should be exporten in all cases, not only under PHP6 --- diff --git a/ext/mysqlnd/mysqlnd.h b/ext/mysqlnd/mysqlnd.h index 1e81e2e58e..3e5a87ea6c 100644 --- a/ext/mysqlnd/mysqlnd.h +++ b/ext/mysqlnd/mysqlnd.h @@ -336,6 +336,8 @@ ZEND_EXTERN_MODULE_GLOBALS(mysqlnd); #endif +PHPAPI void mysqlnd_minfo_print_hash(zval *values); + #endif /* MYSQLND_H */ diff --git a/ext/mysqlnd/php_mysqlnd.c b/ext/mysqlnd/php_mysqlnd.c index a8d427ee4e..1204486811 100644 --- a/ext/mysqlnd/php_mysqlnd.c +++ b/ext/mysqlnd/php_mysqlnd.c @@ -69,7 +69,7 @@ PHPAPI void mysqlnd_minfo_print_hash(zval *values) } } #else -void mysqlnd_minfo_print_hash(zval *values) +PHPAPI void mysqlnd_minfo_print_hash(zval *values) { zval **values_entry; HashPosition pos_values;