54ba60db29abc0817c58c205b1d2c8ba8634ab6c
[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_auth_type = ap_pstrdup(p, "None");
7         return rec;
8 }