From d17247c79871932f12ff2dee378c5ec27df511f5 Mon Sep 17 00:00:00 2001 From: kouril Date: Tue, 10 Aug 2004 12:01:01 +0000 Subject: [PATCH] Added flag RSRC_CONF to the directives definitions so they can be set in the server-wide config file as well --- src/mod_auth_kerb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mod_auth_kerb.c b/src/mod_auth_kerb.c index 788c7d1..35e5357 100644 --- a/src/mod_auth_kerb.c +++ b/src/mod_auth_kerb.c @@ -143,12 +143,12 @@ krb5_save_realms(cmd_parms *cmd, kerb_auth_config *sec, char *arg); #define command(name, func, var, type, usage) \ AP_INIT_ ## type (name, func, \ (void*)APR_XtOffsetOf(kerb_auth_config, var), \ - OR_AUTHCFG, usage) + OR_AUTHCFG | RSRC_CONF, usage) #else #define command(name, func, var, type, usage) \ { name, func, \ (void*)XtOffsetOf(kerb_auth_config, var), \ - OR_AUTHCFG, type, usage } + OR_AUTHCFG | RSRC_CONF, type, usage } #endif static const command_rec kerb_auth_cmds[] = { -- 2.1.4