Is there a reason $RCFLAGS is omitted from configtest in apachectl?

Currently:

    configtest)
        if $HTTPD -t; then
            :
        else
            ERROR=8
        fi
        ;;

Should be: ??

    configtest)
        if $HTTPD $RCFLAGS -t; then
            :
        else
            ERROR=8
        fi
        ;;

Reply via email to