Patch svn.c.patch for svn Bug #60680
Patch version 2012-01-07 11:51 UTC
Return to Bug #60680 |
Download this patch
Patch Revisions:
Developer: martijntje@martijnotto.nl
--- svn-1.0.1/svn.c 2010-12-09 04:30:16.000000000 +0100
+++ svn-1.0.1/svn.c 2012-01-07 12:40:28.066690416 +0100
@@ -123,7 +123,7 @@
#define SVN_STATIC_ME(name) ZEND_FENTRY(name, ZEND_FN(svn_ ## name), NULL, ZEND_ACC_PUBLIC | ZEND_ACC_STATIC)
/** Fixme = this list needs padding out... */
-static function_entry svn_methods[] = {
+static zend_function_entry svn_methods[] = {
SVN_STATIC_ME(cat)
SVN_STATIC_ME(checkout)
SVN_STATIC_ME(log)
@@ -134,7 +134,7 @@
/* {{{ svn_functions[] */
-function_entry svn_functions[] = {
+zend_function_entry svn_functions[] = {
PHP_FE(svn_checkout, NULL)
PHP_FE(svn_cat, NULL)
PHP_FE(svn_ls, NULL)
|