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 A01681165D for ; Mon, 4 Aug 2014 08:57:07 +0000 (UTC) Received: (qmail 27328 invoked by uid 500); 4 Aug 2014 08:57:07 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 27296 invoked by uid 500); 4 Aug 2014 08:57:07 -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 27286 invoked by uid 99); 4 Aug 2014 08:57:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 04 Aug 2014 08:57: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; Mon, 04 Aug 2014 08:57:06 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 13CA52388BA6; Mon, 4 Aug 2014 08:56:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1615511 - /subversion/branches/authzperf/subversion/libsvn_repos/authz.h Date: Mon, 04 Aug 2014 08:56:46 -0000 To: commits@subversion.apache.org From: stefan2@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20140804085646.13CA52388BA6@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: stefan2 Date: Mon Aug 4 08:56:45 2014 New Revision: 1615511 URL: http://svn.apache.org/r1615511 Log: On the authzperf branch: * subversion/libsvn_repos/authz.h (): Fix a few docstring typos. No functional change. Modified: subversion/branches/authzperf/subversion/libsvn_repos/authz.h Modified: subversion/branches/authzperf/subversion/libsvn_repos/authz.h URL: http://svn.apache.org/viewvc/subversion/branches/authzperf/subversion/libsvn_repos/authz.h?rev=1615511&r1=1615510&r2=1615511&view=diff ============================================================================== --- subversion/branches/authzperf/subversion/libsvn_repos/authz.h (original) +++ subversion/branches/authzperf/subversion/libsvn_repos/authz.h Mon Aug 4 08:56:45 2014 @@ -41,7 +41,7 @@ extern "C" { * Authz and global group file parsing */ -/* Number of (user, respoitory) combinations per authz for which we can +/* Number of (user, repository) combinations per authz for which we can * cache the corresponding filtered path rule trees. * * Since authz instance are per connection and there is usually only one @@ -94,7 +94,7 @@ typedef struct svn_authz_tng_t authz_user_rules_t *user_rules[AUTHZ_FILTERED_CACHE_SIZE]; /* The pool from which all the parsed authz data is allocated. - This is hte RESULT_POOL passed to svn_authz__tng_parse. + This is the RESULT_POOL passed to svn_authz__tng_parse. It's a good idea to dedicate a pool for the authz structure, so that the whole authz representation can be deallocated by @@ -112,7 +112,7 @@ typedef struct authz_acl_t matches. */ apr_int64_t sequence_number; - /* The reposttory name from the rule. This will be empty string if a + /* The repository name from the rule. This will be empty string if a the rule did not name a repository. */ const char *repos; @@ -122,11 +122,11 @@ typedef struct authz_acl_t /* TRUE if RULE contains wildcards. */ svn_boolean_t glob; - /* Access rigts for anonymous users */ + /* Access rights for anonymous users */ svn_boolean_t has_anon_access; svn_repos_authz_access_t anon_access; - /* Access rigts for authenticated users */ + /* Access rights for authenticated users */ svn_boolean_t has_authn_access; svn_repos_authz_access_t authn_access;