diff options
author | Ryan Bloom <rbb@apache.org> | 2001-11-13 07:04:25 +0100 |
---|---|---|
committer | Ryan Bloom <rbb@apache.org> | 2001-11-13 07:04:25 +0100 |
commit | aefc6b1525b66de0a6f9c25aba6ac998b294338a (patch) | |
tree | 3c81450faee935768042fa933af7fdca8fded791 /server/mpm/experimental/perchild | |
parent | Document the new 'redirect-carefully' option. (diff) | |
download | apache2-aefc6b1525b66de0a6f9c25aba6ac998b294338a.tar.xz apache2-aefc6b1525b66de0a6f9c25aba6ac998b294338a.zip |
Remove commas from the end of the macros that define
directives that are used by MPMs. Previous to this patch,
you would use these macros without commans, which was unlike
any other directives. Now, after the macro, you must have
a comma. This makes the macros look more like the rest of the
directives.
I know this is cosmetic, and I was going to leave it alone, but when
I found out that it bothered Cliff too, I decided to fix it after all.
Submitted by: Ryan Bloom and Cliff Woolley
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91896 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'server/mpm/experimental/perchild')
-rw-r--r-- | server/mpm/experimental/perchild/perchild.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/server/mpm/experimental/perchild/perchild.c b/server/mpm/experimental/perchild/perchild.c index 9512227105..cd3aeb4a7b 100644 --- a/server/mpm/experimental/perchild/perchild.c +++ b/server/mpm/experimental/perchild/perchild.c @@ -1740,8 +1740,8 @@ static const char *assign_childuid(cmd_parms *cmd, void *dummy, const char *uid, } static const command_rec perchild_cmds[] = { -UNIX_DAEMON_COMMANDS -LISTEN_COMMANDS +UNIX_DAEMON_COMMANDS, +LISTEN_COMMANDS, AP_INIT_TAKE1("NumServers", set_num_daemons, NULL, RSRC_CONF, "Number of children alive at the same time"), AP_INIT_TAKE1("StartThreads", set_threads_to_start, NULL, RSRC_CONF, |