You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by eh...@apache.org on 2010/10/22 10:54:57 UTC

svn commit: r1026253 - /subversion/trunk/subversion/libsvn_wc/adm_ops.c

Author: ehu
Date: Fri Oct 22 08:54:56 2010
New Revision: 1026253

URL: http://svn.apache.org/viewvc?rev=1026253&view=rev
Log:
Add comment, based on feedback from rhuijben.

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=1026253&r1=1026252&r2=1026253&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/adm_ops.c (original)
+++ subversion/trunk/subversion/libsvn_wc/adm_ops.c Fri Oct 22 08:54:56 2010
@@ -1624,6 +1624,10 @@ revert_internal(svn_wc__db_t *db,
       && db_kind == svn_wc__db_kind_dir)
     {
       /* Non-replaced directories have their admin area deleted. wc-1.0 */
+      /* In wc-ng, this call does not really delete the admin area - since
+         there isn't one - but it does destroy the adm_access structure
+         which may be cached inside DB, if the DB is used with old entries
+         functions. */
       SVN_ERR(svn_wc__adm_destroy(db, local_abspath,
                                   cancel_func, cancel_baton, pool));
     }