You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Alexei Kosut <ak...@organic.com> on 1997/07/08 21:56:05 UTC

more on module names

Ah... I figured out why my patch to reduce module names to their last
component part (e.g. "mod_cgi.c") wasn't working. It affects
add_module(), which is called from setup_prelinked_modules() for
preloaded modules. However, setup_prelinked_modules() is called in
http_main.c *after* it checks for command-line options. So if you do, for
example, a "httpd -l", it lists the wrong names.

I can't think of any reason not to move setup_prelinked_modules() to
before the getopt while loop. Can anyone else?

-- Alexei Kosut <ak...@organic.com>