From cf46733632c7279a9fd0fe6ce26f9185a4ae82a9 Mon Sep 17 00:00:00 2001 From: Lorry Tar Creator Date: Sat, 5 Aug 2017 16:22:51 +0000 Subject: subversion-1.9.7 --- subversion/libsvn_subr/debug.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'subversion/libsvn_subr/debug.c') diff --git a/subversion/libsvn_subr/debug.c b/subversion/libsvn_subr/debug.c index be331ed..4681fa4 100644 --- a/subversion/libsvn_subr/debug.c +++ b/subversion/libsvn_subr/debug.c @@ -80,7 +80,7 @@ static void debug_vprintf(const char *fmt, va_list ap) { FILE *output = debug_output; - char prefix[80], buffer[1000]; + char prefix[80], buffer[4096]; char *s = buffer; int n; @@ -145,8 +145,8 @@ svn_dbg__print_props(apr_hash_t *props, for (hi = apr_hash_first(apr_hash_pool_get(props), props); hi; hi = apr_hash_next(hi)) { - const char *name = svn__apr_hash_index_key(hi); - svn_string_t *val = svn__apr_hash_index_val(hi); + const char *name = apr_hash_this_key(hi); + svn_string_t *val = apr_hash_this_val(hi); svn_dbg__printf(" '%s' -> '%s'\n", name, val->data); } -- cgit v1.2.1