Return-Path: Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: (qmail 18428 invoked from network); 3 Feb 2011 16:04:16 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 3 Feb 2011 16:04:16 -0000 Received: (qmail 64578 invoked by uid 500); 3 Feb 2011 16:04:16 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 64477 invoked by uid 500); 3 Feb 2011 16:04:13 -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 64463 invoked by uid 99); 3 Feb 2011 16:04:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 03 Feb 2011 16:04:11 +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; Thu, 03 Feb 2011 16:04:11 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id ED7E92388900; Thu, 3 Feb 2011 16:03:50 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1066846 - /subversion/trunk/subversion/libsvn_client/list.c Date: Thu, 03 Feb 2011 16:03:50 -0000 To: commits@subversion.apache.org From: cmpilato@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110203160350.ED7E92388900@eris.apache.org> Author: cmpilato Date: Thu Feb 3 16:03:50 2011 New Revision: 1066846 URL: http://svn.apache.org/viewvc?rev=1066846&view=rev Log: Improve an error message. * subversion/libsvn_client/list.c (svn_client_list2): Specify in which revision a missing URL is missing. Modified: subversion/trunk/subversion/libsvn_client/list.c Modified: subversion/trunk/subversion/libsvn_client/list.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_client/list.c?rev=1066846&r1=1066845&r2=1066846&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_client/list.c (original) +++ subversion/trunk/subversion/libsvn_client/list.c Thu Feb 3 16:03:50 2011 @@ -242,8 +242,8 @@ svn_client_list2(const char *path_or_url if (! dirent) return svn_error_createf(SVN_ERR_FS_NOT_FOUND, NULL, - _("URL '%s' non-existent in that revision"), - url); + _("URL '%s' non-existent in revision %ld"), + url, rev); /* Maybe get all locks under url. */ if (fetch_locks)