Author: cmpilato
Date: Wed Mar 17 12:29:14 2010
New Revision: 924260
URL: http://svn.apache.org/viewvc?rev=924260&view=rev
Log:
* subversion/libsvn_wc/adm_ops.c
(svn_wc__prop_array_to_hash): Genericize a variable name. A(nother)
follow-up to r921503.
Modified:
subversion/trunk/subversion/libsvn_wc/adm_ops.c
Modified: subversion/trunk/subversion/libsvn_wc/adm_ops.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/adm_ops.c?rev=924260&r1=924259&r2=924260&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/adm_ops.c (original)
+++ subversion/trunk/subversion/libsvn_wc/adm_ops.c Wed Mar 17 12:29:14 2010
@@ -582,22 +582,21 @@ svn_wc__prop_array_to_hash(const apr_arr
apr_pool_t *result_pool)
{
int i;
- apr_hash_t *dav_cache;
+ apr_hash_t *prophash;
if (props == NULL || props->nelts == 0)
return NULL;
- dav_cache = apr_hash_make(result_pool);
+ prophash = apr_hash_make(result_pool);
for (i = 0; i < props->nelts; i++)
{
const svn_prop_t *prop = APR_ARRAY_IDX(props, i, const svn_prop_t *);
-
if (prop->value != NULL)
- apr_hash_set(dav_cache, prop->name, APR_HASH_KEY_STRING, prop->value);
+ apr_hash_set(prophash, prop->name, APR_HASH_KEY_STRING, prop->value);
}
- return dav_cache;
+ return prophash;
}