aboutsummaryrefslogtreecommitdiff
path: root/plugins/check_swap.c
diff options
context:
space:
mode:
authorGravatar Holger Weiss <hweiss@users.sourceforge.net> 2007-02-07 14:06:11 +0000
committerGravatar Holger Weiss <hweiss@users.sourceforge.net> 2007-02-07 14:06:11 +0000
commitc391272975965ded901818c73abc492e1e354acb (patch)
treef50fbdfecdecc6348c3aa73c8911c4628905238d /plugins/check_swap.c
parent8572a59254e37a5aee4a113f8737553a511f15a5 (diff)
downloadmonitoring-plugins-c391272975965ded901818c73abc492e1e354acb.tar.gz
Include <sys/param.h> before <sys/swap.h> in order to fix compilation on
OpenBSD (nsturm - 1653934) git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1613 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_swap.c')
-rw-r--r--plugins/check_swap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/check_swap.c b/plugins/check_swap.c
index 1903a006..fb84ca4b 100644
--- a/plugins/check_swap.c
+++ b/plugins/check_swap.c
@@ -42,15 +42,15 @@ const char *email = "nagiosplug-devel@lists.sourceforge.net";
#include "utils.h"
#ifdef HAVE_DECL_SWAPCTL
+# ifdef HAVE_SYS_PARAM_H
+# include <sys/param.h>
+# endif
# ifdef HAVE_SYS_SWAP_H
# include <sys/swap.h>
# endif
# ifdef HAVE_SYS_STAT_H
# include <sys/stat.h>
# endif
-# ifdef HAVE_SYS_PARAM_H
-# include <sys/param.h>
-# endif
#endif
#ifndef SWAP_CONVERSION