]> granicus.if.org Git - apache/commitdiff
ensure that all cpp directives start with a # in column one
authorTony Finch <fanf@apache.org>
Wed, 25 Oct 2000 15:03:03 +0000 (15:03 +0000)
committerTony Finch <fanf@apache.org>
Wed, 25 Oct 2000 15:03:03 +0000 (15:03 +0000)
PR: 6742

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86745 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_core.c
os/tpf/os.c
support/htdigest.c

index a0f3bc9d3724ecd10dbc481b0221223417a8fc8b..15dadedf25a570078823b8a232eaf15fb57f9ffe 100644 (file)
  * 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)
index a8af4bdaea5ac8077d78e273b146f8573f665ad3..cc0633d6d77adc3689d5543f265cc05a8c9d54a9 100644 (file)
@@ -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;
 }
 
index 003bc86d7a614255a85d66c6d2b7c55c2a25cb32..73cb59199c4165217e6e5baf7984bbcfc0175fa9 100644 (file)
@@ -68,7 +68,7 @@
 #include "apr_md5.h"
 
 #ifdef HAVE_SYS_TYPES_H
- #include <sys/types.h>
+#include <sys/types.h>
 #endif
 
 #ifdef HAVE_SYS_SIGNAL_H