summaryrefslogtreecommitdiff
path: root/server/mpm/mpmt_os2
diff options
context:
space:
mode:
authorRyan Bloom <rbb@apache.org>2001-11-13 06:04:25 +0000
committerRyan Bloom <rbb@apache.org>2001-11-13 06:04:25 +0000
commitaefc6b1525b66de0a6f9c25aba6ac998b294338a (patch)
tree3c81450faee935768042fa933af7fdca8fded791 /server/mpm/mpmt_os2
parentdc6c610f7fdcb24ce08db5998b488344f8342ad9 (diff)
downloadhttpd-aefc6b1525b66de0a6f9c25aba6ac998b294338a.tar.gz
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/mpmt_os2')
-rw-r--r--server/mpm/mpmt_os2/mpmt_os2.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/mpm/mpmt_os2/mpmt_os2.c b/server/mpm/mpmt_os2/mpmt_os2.c
index 04d95fdfc4..7d04a104fc 100644
--- a/server/mpm/mpmt_os2/mpmt_os2.c
+++ b/server/mpm/mpmt_os2/mpmt_os2.c
@@ -561,7 +561,7 @@ static const char *set_max_spare_threads(cmd_parms *cmd, void *dummy,
static const command_rec mpmt_os2_cmds[] = {
-LISTEN_COMMANDS
+LISTEN_COMMANDS,
AP_INIT_TAKE1( "StartServers", set_daemons_to_start, NULL, RSRC_CONF,
"Number of child processes launched at server startup" ),
AP_INIT_TAKE1("MinSpareThreads", set_min_spare_threads, NULL, RSRC_CONF,