]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
remove the unused per-dir-config structure.
authorBradley Nicholes <bnicholes@apache.org>
Thu, 19 Jan 2006 16:15:44 +0000 (16:15 +0000)
committerBradley Nicholes <bnicholes@apache.org>
Thu, 19 Jan 2006 16:15:44 +0000 (16:15 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@370521 13f79535-47bb-0310-9956-ffa450edef68

modules/aaa/mod_authz_owner.c

index 1f74800379322fcbab1c5f56762f35d6df6cb90e..e3b9c197fe30d65d230ecdbb0c3b2f724814b420 100644 (file)
 
 #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 */