Author: hwright
Date: Wed Apr 4 15:39:29 2012
New Revision: 1309464
URL: http://svn.apache.org/viewvc?rev=1309464&view=rev
Log:
Ev2 shims: Explicitly error on the shim callbacks which are not yet implemented.
* subversion/libsvn_delta/compat.c
(alter_symlink_cb, move_cb, rotate_cb): Use SVN__NOT_IMPLEMENTED().
Modified:
subversion/trunk/subversion/libsvn_delta/compat.c
Modified: subversion/trunk/subversion/libsvn_delta/compat.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_delta/compat.c?rev=1309464&r1=1309463&r2=1309464&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_delta/compat.c (original)
+++ subversion/trunk/subversion/libsvn_delta/compat.c Wed Apr 4 15:39:29 2012
@@ -1531,6 +1531,7 @@ alter_symlink_cb(void *baton,
/* ### do something */
+ SVN__NOT_IMPLEMENTED();
return SVN_NO_ERROR;
}
@@ -1586,6 +1587,7 @@ move_cb(void *baton,
svn_revnum_t replaces_rev,
apr_pool_t *scratch_pool)
{
+ SVN__NOT_IMPLEMENTED();
return SVN_NO_ERROR;
}
@@ -1596,6 +1598,7 @@ rotate_cb(void *baton,
const apr_array_header_t *revisions,
apr_pool_t *scratch_pool)
{
+ SVN__NOT_IMPLEMENTED();
return SVN_NO_ERROR;
}