Author: julianfoad
Date: Wed Jan 2 20:48:07 2013
New Revision: 1428024
URL: http://svn.apache.org/viewvc?rev=1428024&view=rev
Log:
* subversion/libsvn_wc/wc_db.c
(set_actual_props): Add a note to the doc string.
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=1428024&r1=1428023&r2=1428024&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/wc_db.c (original)
+++ subversion/trunk/subversion/libsvn_wc/wc_db.c Wed Jan 2 20:48:07 2013
@@ -5110,7 +5110,11 @@ svn_wc__db_global_record_fileinfo(svn_wc
/* Set the ACTUAL_NODE properties column for (WC_ID, LOCAL_RELPATH) to
- * PROPS. */
+ * PROPS.
+ *
+ * Note: PROPS=NULL means the actual props are the same as the pristine
+ * props; to indicate no properties when the pristine has some props,
+ * PROPS must be an empty hash. */
static svn_error_t *
set_actual_props(apr_int64_t wc_id,
const char *local_relpath,
|