You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by ju...@apache.org on 2010/11/24 11:01:56 UTC

svn commit: r1038544 - /subversion/trunk/subversion/svn/update-cmd.c

Author: julianfoad
Date: Wed Nov 24 10:01:55 2010
New Revision: 1038544

URL: http://svn.apache.org/viewvc?rev=1038544&view=rev
Log:
* subversion/svn/update-cmd.c
  (svn_cl__update): Note a layering problem.

Modified:
    subversion/trunk/subversion/svn/update-cmd.c

Modified: subversion/trunk/subversion/svn/update-cmd.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/update-cmd.c?rev=1038544&r1=1038543&r2=1038544&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/update-cmd.c (original)
+++ subversion/trunk/subversion/svn/update-cmd.c Wed Nov 24 10:01:55 2010
@@ -139,6 +139,10 @@ svn_cl__update(apr_getopt_t *os,
   if (! opt_state->quiet)
     {
       SVN_ERR(print_update_summary(targets, result_revs, scratch_pool));
+
+      /* ### Layering problem: This call assumes that the baton we're
+       * passing is the one that was originally provided by
+       * svn_cl__get_notifier(), but that isn't promised. */
       SVN_ERR(svn_cl__print_conflict_stats(nwb.wrapped_baton, scratch_pool));
     }