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 6A5D347EB for ; Thu, 2 Jun 2011 14:04:22 +0000 (UTC) Received: (qmail 74121 invoked by uid 500); 2 Jun 2011 14:04:22 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 74091 invoked by uid 500); 2 Jun 2011 14:04:22 -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 74084 invoked by uid 99); 2 Jun 2011 14:04:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Jun 2011 14:04:22 +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, 02 Jun 2011 14:04:21 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 41A65238890A; Thu, 2 Jun 2011 14:04:01 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1130559 - /subversion/trunk/subversion/libsvn_ra_neon/replay.c Date: Thu, 02 Jun 2011 14:04:01 -0000 To: commits@subversion.apache.org From: stefan2@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110602140401.41A65238890A@eris.apache.org> Author: stefan2 Date: Thu Jun 2 14:04:00 2011 New Revision: 1130559 URL: http://svn.apache.org/viewvc?rev=1130559&view=rev Log: Follow-up to 1130548: My build (and renames) had not covered the neon code. * subversion/libsvn_ra_neon/replay.c (end_element): call renamed function Modified: subversion/trunk/subversion/libsvn_ra_neon/replay.c Modified: subversion/trunk/subversion/libsvn_ra_neon/replay.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_ra_neon/replay.c?rev=1130559&r1=1130558&r2=1130559&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_ra_neon/replay.c (original) +++ subversion/trunk/subversion/libsvn_ra_neon/replay.c Thu Jun 2 14:04:00 2011 @@ -25,6 +25,8 @@ #include "svn_pools.h" #include "svn_xml.h" +#include "private/svn_strin_private.h" + #include "../libsvn_ra/ra_loader.h" #include "ra_neon.h" @@ -394,7 +396,7 @@ end_element(void *baton, int state, cons { const svn_string_t *prop; - prop = svn_string_from_stringbuf(rb->prop_accum); + prop = svn_stringbuf__morph_into_string(rb->prop_accum); decoded_value = svn_base64_decode_string(prop, rb->prop_pool); } else