summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorStefan Fritsch <sf@apache.org>2011-09-23 18:08:42 +0000
committerStefan Fritsch <sf@apache.org>2011-09-23 18:08:42 +0000
commit1951a037bf2b1009cf6908b035e868a90f2dfb59 (patch)
tree9d956f9fe11682fd311d51d49c2c270be110d568 /os
parent427c85bd2353796cbd8253854dd2fb2ccfbf8bdc (diff)
downloadhttpd-1951a037bf2b1009cf6908b035e868a90f2dfb59.tar.gz
More cleanup: Expand tabs and some more indentation fixes
No functional change git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1174929 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os')
-rw-r--r--os/unix/os.h2
-rw-r--r--os/unix/unixd.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/os/unix/os.h b/os/unix/os.h
index 5c7fbdff32..1494edd123 100644
--- a/os/unix/os.h
+++ b/os/unix/os.h
@@ -48,5 +48,5 @@
pid_t os_fork(const char *user);
#endif
-#endif /* !APACHE_OS_H */
+#endif /* !APACHE_OS_H */
/** @} */
diff --git a/os/unix/unixd.h b/os/unix/unixd.h
index 3d8e8d2934..721250f372 100644
--- a/os/unix/unixd.h
+++ b/os/unix/unixd.h
@@ -101,10 +101,10 @@ AP_DECLARE(apr_status_t) ap_unixd_set_global_mutex_perms(apr_global_mutex_t *gmu
AP_DECLARE(apr_status_t) ap_unixd_accept(void **accepted, ap_listen_rec *lr, apr_pool_t *ptrans);
#ifdef HAVE_KILLPG
-#define ap_unixd_killpg(x, y) (killpg ((x), (y)))
+#define ap_unixd_killpg(x, y) (killpg ((x), (y)))
#define ap_os_killpg(x, y) (killpg ((x), (y)))
#else /* HAVE_KILLPG */
-#define ap_unixd_killpg(x, y) (kill (-(x), (y)))
+#define ap_unixd_killpg(x, y) (kill (-(x), (y)))
#define ap_os_killpg(x, y) (kill (-(x), (y)))
#endif /* HAVE_KILLPG */