Skip to content

Commit 96e7117

Browse files
committed
Fix for unknown symbol convert_to_bool when running under Ubuntu Raring, PHP 5.4.9
1 parent 04e41d0 commit 96e7117

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

g_config.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ static void php_git2_config_set_with(INTERNAL_FUNCTION_PARAMETERS, enum php_git2
119119
}
120120
case PHP_GIT2_CONFIG_BOOL: {
121121
if (Z_TYPE_P(value) != IS_BOOL) {
122-
convert_to_bool(value);
122+
convert_to_boolean(value);
123123
}
124124
error = git_config_set_bool(PHP_GIT2_V(_cfg, config), name, Z_LVAL_P(value));
125125
if (php_git2_check_error(error, "git_config_set_bool" TSRMLS_CC)) {

0 commit comments

Comments
 (0)