From: kouril Date: Tue, 10 Aug 2004 12:01:01 +0000 (+0000) Subject: Added flag RSRC_CONF to the directives definitions so they can be set in the X-Git-Tag: v5.0-rc6 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=mod_auth_kerb.cvs%2F.git;a=commitdiff_plain;h=d17247c79871932f12ff2dee378c5ec27df511f5;hp=35b43bdd6a8d77809c20979f1b78a5fd8080b102 Added flag RSRC_CONF to the directives definitions so they can be set in the server-wide config file as well --- 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[] = {