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 2BDAEE37F for ; Fri, 11 Jan 2013 20:23:17 +0000 (UTC) Received: (qmail 72528 invoked by uid 500); 11 Jan 2013 20:23:17 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 72478 invoked by uid 500); 11 Jan 2013 20:23:17 -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 72468 invoked by uid 99); 11 Jan 2013 20:23:17 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 11 Jan 2013 20:23:17 +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; Fri, 11 Jan 2013 20:23:14 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id A680923889E0; Fri, 11 Jan 2013 20:22:54 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1432264 - /subversion/trunk/subversion/libsvn_ra_serf/replay.c Date: Fri, 11 Jan 2013 20:22:54 -0000 To: commits@subversion.apache.org From: cmpilato@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130111202254.A680923889E0@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: cmpilato Date: Fri Jan 11 20:22:54 2013 New Revision: 1432264 URL: http://svn.apache.org/viewvc?rev=1432264&view=rev Log: Cruft removal. * subversion/libsvn_ra_serf/replay.c (replay_context_t): Lose not-really-used 'report_target' member. (svn_ra_serf__replay, svn_re_serf__replay_range): Stop messing with the now-removed structure member. Modified: subversion/trunk/subversion/libsvn_ra_serf/replay.c Modified: subversion/trunk/subversion/libsvn_ra_serf/replay.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_serf/replay.c?rev=1432264&r1=1432263&r2=1432264&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_ra_serf/replay.c (original) +++ subversion/trunk/subversion/libsvn_ra_serf/replay.c Fri Jan 11 20:22:54 2013 @@ -114,9 +114,6 @@ typedef struct replay_context_t { svn_revnum_t low_water_mark; svn_boolean_t send_deltas; - /* Cached report target url */ - const char *report_target; - /* Target and revision to fetch revision properties on */ const char *revprop_target; svn_revnum_t revprop_rev; @@ -648,7 +645,6 @@ svn_ra_serf__replay(svn_ra_session_t *ra replay_ctx->revision = revision; replay_ctx->low_water_mark = low_water_mark; replay_ctx->send_deltas = send_deltas; - replay_ctx->report_target = report_target; replay_ctx->revs_props = apr_hash_make(replay_ctx->src_rev_pool); handler = apr_pcalloc(pool, sizeof(*handler)); @@ -762,8 +758,8 @@ svn_ra_serf__replay_range(svn_ra_session replay_ctx->low_water_mark = low_water_mark; replay_ctx->send_deltas = send_deltas; replay_ctx->done_item.data = replay_ctx; + /* Request all properties of a certain revision. */ - replay_ctx->report_target = report_target; replay_ctx->revs_props = apr_hash_make(replay_ctx->src_rev_pool); if (SVN_RA_SERF__HAVE_HTTPV2_SUPPORT(session))