From: Tony Finch Date: Wed, 25 Oct 2000 15:03:03 +0000 (+0000) Subject: ensure that all cpp directives start with a # in column one X-Git-Tag: APACHE_2_0_ALPHA_8~242 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=718ef1c8805a802224be18955d2fb0ee347ec837;p=apache ensure that all cpp directives start with a # in column one PR: 6742 git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86745 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_core.c b/modules/http/http_core.c index a0f3bc9d37..15dadedf25 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -107,11 +107,11 @@ * the benefit for small files. It shouldn't be set lower than 1. */ #ifndef MMAP_THRESHOLD - #ifdef SUNOS4 - #define MMAP_THRESHOLD (8*1024) - #else - #define MMAP_THRESHOLD 1 - #endif /* SUNOS4 */ +# ifdef SUNOS4 +# define MMAP_THRESHOLD (8*1024) +# else +# define MMAP_THRESHOLD 1 +# endif /* SUNOS4 */ #endif /* MMAP_THRESHOLD */ #ifndef MMAP_LIMIT #define MMAP_LIMIT (4*1024*1024) diff --git a/os/tpf/os.c b/os/tpf/os.c index a8af4bdaea..cc0633d6d7 100644 --- a/os/tpf/os.c +++ b/os/tpf/os.c @@ -382,7 +382,7 @@ pid_t os_fork(server_rec *s, int slot) } int os_check_server(char *server) { - #ifndef USE_TPF_DAEMON +#ifndef USE_TPF_DAEMON int rv; int *current_acn; if((rv = inetd_getServerStatus(server)) == INETD_SERVER_STATUS_INACTIVE) @@ -392,7 +392,7 @@ int os_check_server(char *server) { if(ecbp2()->ce2acn != *current_acn) return 1; } - #endif +#endif return 0; } diff --git a/support/htdigest.c b/support/htdigest.c index 003bc86d7a..73cb59199c 100644 --- a/support/htdigest.c +++ b/support/htdigest.c @@ -68,7 +68,7 @@ #include "apr_md5.h" #ifdef HAVE_SYS_TYPES_H - #include +#include #endif #ifdef HAVE_SYS_SIGNAL_H