From: Bradley Nicholes Date: Thu, 19 Jan 2006 16:15:44 +0000 (+0000) Subject: remove the unused per-dir-config structure. X-Git-Tag: 2.3.0~2591 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=82edb082c54c3a3fa6f37e7b95beef7b02ec86ca;p=thirdparty%2Fapache%2Fhttpd.git 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 --- diff --git a/modules/aaa/mod_authz_owner.c b/modules/aaa/mod_authz_owner.c index 1f748003793..e3b9c197fe3 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 */