From 82edb082c54c3a3fa6f37e7b95beef7b02ec86ca Mon Sep 17 00:00:00 2001 From: Bradley Nicholes Date: Thu, 19 Jan 2006 16:15:44 +0000 Subject: [PATCH] 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 --- modules/aaa/mod_authz_owner.c | 12 +----------- 1 file changed, 1 insertion(+), 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 */ -- 2.40.0