Author: rhuijben
Date: Tue Apr 19 12:47:06 2011
New Revision: 1095069
URL: http://svn.apache.org/viewvc?rev=1095069&view=rev
Log:
* subversion/libsvn_wc/wc_db.c
(read_children_info): Following up on r1095064, fix two references that
are not compiled on Windows.
Modified:
subversion/trunk/subversion/libsvn_wc/wc_db.c
Modified: subversion/trunk/subversion/libsvn_wc/wc_db.c
URL:
http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/wc_db.c?rev=1095069&r1=1095068&r2=1095069&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Tue Apr 19 12:47:06 2011
@@ -5628,7 +5628,7 @@ read_children_info(void *baton,
child->recorded_size = get_translated_size(stmt, 7);
child->had_props = SQLITE_PROPERTIES_AVAILABLE(stmt, 14);
#ifdef HAVE_SYMLINK
- if (child->has_props)
+ if (child->had_props)
{
apr_hash_t *properties;
err = svn_sqlite__column_properties(&properties, stmt, 14,
@@ -5636,7 +5636,7 @@ read_children_info(void *baton,
if (err)
SVN_ERR(svn_error_compose_create(err,
svn_sqlite__reset(stmt)));
- child->special = (child->has_props
+ child->special = (child->had_props
&& apr_hash_get(properties, SVN_PROP_SPECIAL,
APR_HASH_KEY_STRING));
}