diff options
author | peter <peter@FreeBSD.org> | 2015-10-12 08:54:49 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2015-10-12 08:54:49 +0000 |
commit | c18b5d7f26f112be58bb1c4660799dea49f219ba (patch) | |
tree | 013c2e6845398e5a9ca4901dcc077769c7520e1d /subversion/libsvn_client/export.c | |
parent | 91308aec6ca93cab82659cd43b3f6a83d366350b (diff) | |
download | FreeBSD-src-c18b5d7f26f112be58bb1c4660799dea49f219ba.zip FreeBSD-src-c18b5d7f26f112be58bb1c4660799dea49f219ba.tar.gz |
Vendor import of subversion-1.9.2
Diffstat (limited to 'subversion/libsvn_client/export.c')
-rw-r--r-- | subversion/libsvn_client/export.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/subversion/libsvn_client/export.c b/subversion/libsvn_client/export.c index c14a5f0..63cd87a 100644 --- a/subversion/libsvn_client/export.c +++ b/subversion/libsvn_client/export.c @@ -1274,8 +1274,8 @@ export_file(const char *from_path_or_url, * with information. */ for (hi = apr_hash_first(scratch_pool, props); hi; hi = apr_hash_next(hi)) { - const char *propname = svn__apr_hash_index_key(hi); - const svn_string_t *propval = svn__apr_hash_index_val(hi); + const char *propname = apr_hash_this_key(hi); + const svn_string_t *propval = apr_hash_this_val(hi); SVN_ERR(change_file_prop(fb, propname, propval, scratch_pool)); } @@ -1542,7 +1542,7 @@ svn_client_export5(svn_revnum_t *result_rev, hi; hi = apr_hash_next(hi)) { - const char *external_abspath = svn__apr_hash_index_key(hi); + const char *external_abspath = apr_hash_this_key(hi); const char *relpath; const char *target_abspath; @@ -1581,7 +1581,7 @@ svn_client_export5(svn_revnum_t *result_rev, = svn_wc_create_notify(to_path, svn_wc_notify_update_completed, pool); notify->revision = edit_revision; - (*ctx->notify_func2)(ctx->notify_baton2, notify, pool); + ctx->notify_func2(ctx->notify_baton2, notify, pool); } if (result_rev) |