Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 88DE5200C1A for ; Mon, 13 Feb 2017 15:24:42 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 875BC160B60; Mon, 13 Feb 2017 14:24:42 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id C937F160B4D for ; Mon, 13 Feb 2017 15:24:41 +0100 (CET) Received: (qmail 19164 invoked by uid 500); 13 Feb 2017 14:24:40 -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 19154 invoked by uid 99); 13 Feb 2017 14:24:40 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Feb 2017 14:24:40 +0000 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 42F953A0316 for ; Mon, 13 Feb 2017 14:24:40 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1782776 - /subversion/trunk/subversion/libsvn_repos/authz.c Date: Mon, 13 Feb 2017 14:24:39 -0000 To: commits@subversion.apache.org From: stsp@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170213142440.42F953A0316@svn01-us-west.apache.org> archived-at: Mon, 13 Feb 2017 14:24:42 -0000 Author: stsp Date: Mon Feb 13 14:24:39 2017 New Revision: 1782776 URL: http://svn.apache.org/viewvc?rev=1782776&view=rev Log: * subversion/libsvn_repos/authz.c (insert_path): Fix whitespace. Modified: subversion/trunk/subversion/libsvn_repos/authz.c Modified: subversion/trunk/subversion/libsvn_repos/authz.c URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/libsvn_repos/authz.c?rev=1782776&r1=1782775&r2=1782776&view=diff ============================================================================== --- subversion/trunk/subversion/libsvn_repos/authz.c (original) +++ subversion/trunk/subversion/libsvn_repos/authz.c Mon Feb 13 14:24:39 2017 @@ -444,8 +444,8 @@ insert_path(construction_context_t *ctx, */ limited_rights_t rights; rights.access = *access; - rights.max_rights = access->rights; - rights.min_rights = access->rights; + rights.max_rights = access->rights; + rights.min_rights = access->rights; combine_access(&node->rights, &rights); return; }