You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by br...@apache.org on 2012/11/26 17:24:42 UTC

svn commit: r1413708 - /subversion/trunk/subversion/svn/list-cmd.c

Author: breser
Date: Mon Nov 26 16:24:41 2012
New Revision: 1413708

URL: http://svn.apache.org/viewvc?rev=1413708&view=rev
Log:
Remove the unused code since verbose option is not valid in XML listing mode.

* subversion/svn/list-cmd.c
  (print_dirent_xml): Remove the unused code.

Patch by: Vijayaguru G <vijay{_AT_}collab.net>


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

Modified: subversion/trunk/subversion/svn/list-cmd.c
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/svn/list-cmd.c?rev=1413708&r1=1413707&r2=1413708&view=diff
==============================================================================
--- subversion/trunk/subversion/svn/list-cmd.c (original)
+++ subversion/trunk/subversion/svn/list-cmd.c Mon Nov 26 16:24:41 2012
@@ -151,8 +151,6 @@ print_dirent_xml(void *baton,
     {
       if (dirent->kind == svn_node_file)
         entryname = svn_dirent_basename(abs_path, pool);
-      else if (pb->verbose)
-        entryname = ".";
       else
         /* Don't bother to list if no useful information will be shown. */
         return SVN_NO_ERROR;