You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2010/05/07 20:12:53 UTC

svn commit: r942162 - /subversion/trunk/subversion/libsvn_wc/status.c

Author: dannas
Date: Fri May  7 18:12:53 2010
New Revision: 942162

URL: http://svn.apache.org/viewvc?rev=942162&view=rev
Log:
Change doc comment referring to traversal_info to talk about external_func 
instead. The status code has replaced the use of traversal_info with an
svn_wc_external_update_t callback.

* subversion/libsvn_wc/status.c
  (get_dir_status): See above.

Modified:
    subversion/trunk/subversion/libsvn_wc/status.c

Modified: subversion/trunk/subversion/libsvn_wc/status.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_wc/status.c?rev=942162&r1=942161&r2=942162&view=diff
==============================================================================
--- subversion/trunk/subversion/libsvn_wc/status.c (original)
+++ subversion/trunk/subversion/libsvn_wc/status.c Fri May  7 18:12:53 2010
@@ -1055,10 +1055,10 @@ get_dir_status(const struct walk_status_
         apr_hash_set(conflicts, selected, APR_HASH_KEY_STRING, "");
     }
 
-  /* If "this dir" has "svn:externals" property set on it, store the
-     name and value in traversal_info, along with this directory's depth.
-     (Also, we want to track the externals internally so we can report
-     status more accurately.) */
+  /* If "this dir" has "svn:externals" property set on it, send the name and
+     value to wc->external_func along with this directory's depth. (Also,
+     we want to track the externals internally so we can report status more
+     accurately.) */
   SVN_ERR(handle_externals(wb, local_abspath, dir_entry->depth, iterpool));
 
   if (!selected)