From aefc6b1525b66de0a6f9c25aba6ac998b294338a Mon Sep 17 00:00:00 2001 From: Ryan Bloom Date: Tue, 13 Nov 2001 06:04:25 +0000 Subject: 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 --- server/mpm/mpmt_os2/mpmt_os2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'server/mpm/mpmt_os2') 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, -- cgit v1.2.1