Skip to content
This repository was archived by the owner on Apr 12, 2023. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion src/svn/mod_authz_svn_crowd.c
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@

#include <svn_pools.h>
#include <svn_dirent_uri.h>
#include <svn_version.h>

const char *
svn_fspath__canonicalize(const char *fspath,
Expand All @@ -73,6 +74,7 @@ typedef struct authz_svn_config_rec {
const char *base_path;
const char *access_file;
const char *repo_relative_access_file;
const char *groups_file; // rwb
const char *force_username_case;
} authz_svn_config_rec;

Expand Down Expand Up @@ -105,6 +107,12 @@ struct svn_config_t
/* Temporary value used for expanded default values in svn_config_get.
(Using a stringbuf so that frequent resetting is efficient.) */
svn_stringbuf_t *tmp_value;

#if SVN_VER_MINOR >= 7
/* Specifies whether section names are populated case sensitively. */
svn_boolean_t section_names_case_sensitive;
#endif

};

typedef struct
Expand All @@ -113,7 +121,7 @@ typedef struct
const char *name;

/* The section name, converted into a hash key. */
const char *hash_key;
//const char *hash_key;

/* Table of cfg_option_t's. */
apr_hash_t *options;
Expand Down