Return-Path: Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: (qmail 95482 invoked from network); 14 Apr 2010 07:03:08 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 14 Apr 2010 07:03:08 -0000 Received: (qmail 84422 invoked by uid 500); 14 Apr 2010 07:03:08 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 84336 invoked by uid 500); 14 Apr 2010 07:03:08 -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 84329 invoked by uid 99); 14 Apr 2010 07:03:07 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Apr 2010 07:03:07 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Wed, 14 Apr 2010 07:03:05 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id BBEDD2388905; Wed, 14 Apr 2010 07:02:43 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r933864 - /subversion/branches/svn-patch-improvements/subversion/libsvn_client/patch.c Date: Wed, 14 Apr 2010 07:02:43 -0000 To: commits@subversion.apache.org From: dannas@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100414070243.BBEDD2388905@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: dannas Date: Wed Apr 14 07:02:43 2010 New Revision: 933864 URL: http://svn.apache.org/viewvc?rev=933864&view=rev Log: * subversion/libsvn_client/patch.c (find_existing_children): Use svn_wc_status3_t as parameter instead of svn_wc_status2_t. Modified: subversion/branches/svn-patch-improvements/subversion/libsvn_client/patch.c Modified: subversion/branches/svn-patch-improvements/subversion/libsvn_client/patch.c URL: http://svn.apache.org/viewvc/subversion/branches/svn-patch-improvements/subversion/libsvn_client/patch.c?rev=933864&r1=933863&r2=933864&view=diff ============================================================================== --- subversion/branches/svn-patch-improvements/subversion/libsvn_client/patch.c (original) +++ subversion/branches/svn-patch-improvements/subversion/libsvn_client/patch.c Wed Apr 14 07:02:43 2010 @@ -1430,7 +1430,7 @@ struct status_baton static svn_error_t * find_existing_children(void *baton, const char *abspath, - const svn_wc_status2_t *status, + const svn_wc_status3_t *status, apr_pool_t *pool) { struct status_baton *btn = baton;