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 CE2C1E46B for ; Sat, 25 May 2013 04:02:12 +0000 (UTC) Received: (qmail 72130 invoked by uid 500); 25 May 2013 04:02:12 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 71930 invoked by uid 500); 25 May 2013 04:02:09 -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 71805 invoked by uid 99); 25 May 2013 04:02:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 25 May 2013 04:02:07 +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; Sat, 25 May 2013 04:02:06 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 825972388AB8; Sat, 25 May 2013 04:01:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1486287 - in /subversion/branches/1.8.x: ./ STATUS subversion/libsvn_repos/fs-wrap.c Date: Sat, 25 May 2013 04:01:46 -0000 To: commits@subversion.apache.org From: svn-role@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130525040146.825972388AB8@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: svn-role Date: Sat May 25 04:01:45 2013 New Revision: 1486287 URL: http://svn.apache.org/r1486287 Log: Merge r1483557 from trunk: * r1483557 Match our revision property names exactly instead of by prefix only. Justification: While the impact of this bug is certainly low, it is still an easy to fix problem. Votes: +1: stefan2 (for 1.8.1), rhuijben, pburba Modified: subversion/branches/1.8.x/ (props changed) subversion/branches/1.8.x/STATUS subversion/branches/1.8.x/subversion/libsvn_repos/fs-wrap.c Propchange: subversion/branches/1.8.x/ ------------------------------------------------------------------------------ Merged /subversion/trunk:r1483557 Modified: subversion/branches/1.8.x/STATUS URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x/STATUS?rev=1486287&r1=1486286&r2=1486287&view=diff ============================================================================== --- subversion/branches/1.8.x/STATUS (original) +++ subversion/branches/1.8.x/STATUS Sat May 25 04:01:45 2013 @@ -134,11 +134,3 @@ Approved changes: # that would restart the soak should not be added unless they are resolving # blocking issues. If in doubt see this link for details: # http://subversion.apache.org/docs/community-guide/releasing.html#release-stabilization - - * r1483557 - Match our revision property names exactly instead of by prefix only. - Justification: - While the impact of this bug is certainly low, it is still an easy - to fix problem. - Votes: - +1: stefan2 (for 1.8.1), rhuijben, pburba Modified: subversion/branches/1.8.x/subversion/libsvn_repos/fs-wrap.c URL: http://svn.apache.org/viewvc/subversion/branches/1.8.x/subversion/libsvn_repos/fs-wrap.c?rev=1486287&r1=1486286&r2=1486287&view=diff ============================================================================== --- subversion/branches/1.8.x/subversion/libsvn_repos/fs-wrap.c (original) +++ subversion/branches/1.8.x/subversion/libsvn_repos/fs-wrap.c Sat May 25 04:01:45 2013 @@ -409,10 +409,8 @@ svn_repos_fs_revision_prop(svn_string_t else if (readability == svn_repos_revision_access_partial) { /* Only svn:author and svn:date are fetchable. */ - if ((strncmp(propname, SVN_PROP_REVISION_AUTHOR, - sizeof(SVN_PROP_REVISION_AUTHOR)-1) != 0) - && (strncmp(propname, SVN_PROP_REVISION_DATE, - sizeof(SVN_PROP_REVISION_DATE)-1) != 0)) + if ((strcmp(propname, SVN_PROP_REVISION_AUTHOR) != 0) + && (strcmp(propname, SVN_PROP_REVISION_DATE) != 0)) *value_p = NULL; else