coar 97/10/15 08:34:23
Modified: src/modules/example mod_example.c
Log:
Correct returns from auth/auth hooks so they don't interfere
with *real* auth/auth activities by other modules.
PR: 603
Revision Changes Path
1.21 +2 -2 apachen/src/modules/example/mod_example.c
Index: mod_example.c
===================================================================
RCS file: /export/home/cvs/apachen/src/modules/example/mod_example.c,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- mod_example.c 1997/10/07 19:57:44 1.20
+++ mod_example.c 1997/10/15 15:34:22 1.21
@@ -940,7 +940,7 @@
* didn't actually do anything).
*/
trace_add(r->server, r, cfg, "example_auth_checker()");
- return OK;
+ return DECLINED;
}
/*
@@ -959,7 +959,7 @@
cfg = our_dconfig(r);
trace_add(r->server, r, cfg, "example_access_checker()");
- return OK;
+ return DECLINED;
}
/*