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 497BD181AE for ; Tue, 20 Oct 2015 14:40:24 +0000 (UTC) Received: (qmail 18764 invoked by uid 500); 20 Oct 2015 14:40:24 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 18734 invoked by uid 500); 20 Oct 2015 14:40:24 -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 18724 invoked by uid 99); 20 Oct 2015 14:40:24 -0000 Received: from Unknown (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 20 Oct 2015 14:40:24 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id B57E9C81E8 for ; Tue, 20 Oct 2015 14:40:23 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: 1.001 X-Spam-Level: * X-Spam-Status: No, score=1.001 tagged_above=-999 required=6.31 tests=[KAM_LAZY_DOMAIN_SECURITY=1, RP_MATCHES_RCVD=0.001] autolearn=disabled Received: from mx1-us-west.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id sePn1yENGatH for ; Tue, 20 Oct 2015 14:40:20 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-us-west.apache.org (ASF Mail Server at mx1-us-west.apache.org) with ESMTP id 57CB720FE0 for ; Tue, 20 Oct 2015 14:40:20 +0000 (UTC) Received: from svn01-us-west.apache.org (svn.apache.org [10.41.0.6]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id E9379E0183 for ; Tue, 20 Oct 2015 14:40:19 +0000 (UTC) Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 658543A0018 for ; Tue, 20 Oct 2015 14:40:19 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1709616 - /subversion/trunk/subversion/libsvn_fs_x/verify.c Date: Tue, 20 Oct 2015 14:40:18 -0000 To: commits@subversion.apache.org From: stefan2@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20151020144019.658543A0018@svn01-us-west.apache.org> Author: stefan2 Date: Tue Oct 20 14:40:18 2015 New Revision: 1709616 URL: http://svn.apache.org/viewvc?rev=1709616&view=rev Log: Follow-up to r1709614. * subversion/libsvn_fs_x/verify.c (svn_fs_x__verify): Replace a few FSFS identifiers that slipped through. Also remove a now unused local variable. Modified: subversion/trunk/subversion/libsvn_fs_x/verify.c Modified: subversion/trunk/subversion/libsvn_fs_x/verify.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_fs_x/verify.c?rev=1709616&r1=1709615&r2=1709616&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_fs_x/verify.c (original) +++ subversion/trunk/subversion/libsvn_fs_x/verify.c Tue Oct 20 14:40:18 2015 @@ -824,14 +824,12 @@ svn_fs_x__verify(svn_fs_t *fs, void *cancel_baton, apr_pool_t *scratch_pool) { - svn_fs_x__data_t *ffd = fs->fsap_data; - /* Input validation. */ if (! SVN_IS_VALID_REVNUM(start)) start = 0; if (! SVN_IS_VALID_REVNUM(end)) { - SVN_ERR(svn_fs_fs__youngest_rev(&end, fs, pool)); + SVN_ERR(svn_fs_x__youngest_rev(&end, fs, scratch_pool)); } SVN_ERR(svn_fs_x__ensure_revision_exists(start, fs, scratch_pool));