Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DEE65D720 for ; Mon, 24 Sep 2012 10:32:47 +0000 (UTC) Received: (qmail 56649 invoked by uid 500); 24 Sep 2012 10:32:47 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 56631 invoked by uid 500); 24 Sep 2012 10:32:47 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 56606 invoked by uid 99); 24 Sep 2012 10:32:46 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Sep 2012 10:32:46 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 24 Sep 2012 10:32:45 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id DB792238899C; Mon, 24 Sep 2012 10:32:02 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1389276 - /subversion/branches/10Gb/subversion/libsvn_fs_fs/tree.c Date: Mon, 24 Sep 2012 10:32:02 -0000 To: commits@subversion.apache.org From: stefan2@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120924103202.DB792238899C@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: stefan2 Date: Mon Sep 24 10:32:02 2012 New Revision: 1389276 URL: http://svn.apache.org/viewvc?rev=1389276&view=rev Log: On the 10Gb branch: prevent unnecessary canonicalization. * subversion/libsvn_fs_fs/tree.c (get_root): use "/" instead of "" for a root path Modified: subversion/branches/10Gb/subversion/libsvn_fs_fs/tree.c Modified: subversion/branches/10Gb/subversion/libsvn_fs_fs/tree.c URL: http://svn.apache.org/viewvc/subversion/branches/10Gb/subversion/libsvn_fs_fs/tree.c?rev=1389276&r1=1389275&r2=1389276&view=diff ============================================================================== --- subversion/branches/10Gb/subversion/libsvn_fs_fs/tree.c (original) +++ subversion/branches/10Gb/subversion/libsvn_fs_fs/tree.c Mon Sep 24 10:32:02 2012 @@ -1382,7 +1382,7 @@ fs_props_changed(svn_boolean_t *changed_ static svn_error_t * get_root(dag_node_t **node, svn_fs_root_t *root, apr_pool_t *pool) { - return get_dag(node, root, "", pool); + return get_dag(node, root, "/", pool); }