On Thu, 25 May 2000, Sergey Ivanyuk wrote:

> package handler;
> 
> use Apache;
> 
> sub handler {
>     return DECLINED;
> }

where does DECLINED come from?  watch what happens if you add 'print
handler()' and run it from the command line, and watch what happens when
you add 'use strict;'.  adding 'use Apache::Constants qw(DECLINED)' will
fix your problem.

Reply via email to