diff options
author | Bradley Nicholes <bnicholes@apache.org> | 2006-01-19 16:15:44 +0000 |
---|---|---|
committer | Bradley Nicholes <bnicholes@apache.org> | 2006-01-19 16:15:44 +0000 |
commit | 82edb082c54c3a3fa6f37e7b95beef7b02ec86ca (patch) | |
tree | ebcfc3a14d5ba2878a4129b045e786c832f23419 /modules | |
parent | 44c8981aac540ebe8d2433d08702395ee4b8c729 (diff) | |
download | httpd-82edb082c54c3a3fa6f37e7b95beef7b02ec86ca.tar.gz |
remove the unused per-dir-config structure.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@370521 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules')
-rw-r--r-- | modules/aaa/mod_authz_owner.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/modules/aaa/mod_authz_owner.c b/modules/aaa/mod_authz_owner.c index 1f74800379..e3b9c197fe 100644 --- a/modules/aaa/mod_authz_owner.c +++ b/modules/aaa/mod_authz_owner.c @@ -29,18 +29,8 @@ #include "mod_auth.h" /* for AUTHZ_GROUP_NOTE */ -typedef struct { -} authz_owner_config_rec; - APR_DECLARE_OPTIONAL_FN(char*, authz_owner_get_file_group, (request_rec *r)); -static void *create_authz_owner_dir_config(apr_pool_t *p, char *d) -{ - authz_owner_config_rec *conf = apr_palloc(p, sizeof(*conf)); - - return conf; -} - static const command_rec authz_owner_cmds[] = { {NULL} @@ -184,7 +174,7 @@ static void register_hooks(apr_pool_t *p) module AP_MODULE_DECLARE_DATA authz_owner_module = { STANDARD20_MODULE_STUFF, - create_authz_owner_dir_config, /* dir config creater */ + NULL, /* dir config creater */ NULL, /* dir merger --- default is to override */ NULL, /* server config */ NULL, /* merge server config */ |