Added authoritative support.
[mod_auth_kerb.cvs/.git] / apache1 / dir_config.c
1 static void *kerb_dir_config(pool *p, char *d)
2 {
3         static void *rec;
4         rec = (void *) ap_pcalloc(p, sizeof(kerb_auth_config));
5         ((kerb_auth_config *)rec)->krb_fail_status = HTTP_UNAUTHORIZED;
6         ((kerb_auth_config *)rec)->krb_authoritative = 0;
7         ((kerb_auth_config *)rec)->krb_auth_type = ap_pstrdup(p, "None");
8         return rec;
9 }