diff options
author | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 00:55:28 (GMT) |
---|---|---|
committer | Benoit Mortier <opensides@users.sourceforge.net> | 2004-12-03 00:55:28 (GMT) |
commit | 016d33230eb4fffd7e1f5644ce4901cb4d01f4e3 (patch) | |
tree | 1a6f29dcfd937bccffb66467127613b660d55365 /plugins/check_swap.c | |
parent | 3f05eb7fcb71942c90fa7d5796c3d18ed62443cf (diff) | |
download | monitoring-plugins-016d33230eb4fffd7e1f5644ce4901cb4d01f4e3.tar.gz |
bump copyright year
initialize result to STATE_UNKNOW in place of STATE_OK
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@982 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'plugins/check_swap.c')
-rw-r--r-- | plugins/check_swap.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/plugins/check_swap.c b/plugins/check_swap.c index 608080a..6857a01 100644 --- a/plugins/check_swap.c +++ b/plugins/check_swap.c | |||
@@ -25,15 +25,15 @@ | |||
25 | * | 25 | * |
26 | *****************************************************************************/ | 26 | *****************************************************************************/ |
27 | 27 | ||
28 | #include "common.h" | ||
29 | #include "popen.h" | ||
30 | #include "utils.h" | ||
31 | |||
32 | const char *progname = "check_swap"; | 28 | const char *progname = "check_swap"; |
33 | const char *revision = "$Revision$"; | 29 | const char *revision = "$Revision$"; |
34 | const char *copyright = "2000-2003"; | 30 | const char *copyright = "2000-2004"; |
35 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; | 31 | const char *email = "nagiosplug-devel@lists.sourceforge.net"; |
36 | 32 | ||
33 | #include "common.h" | ||
34 | #include "popen.h" | ||
35 | #include "utils.h" | ||
36 | |||
37 | int check_swap (int usp, long unsigned int free_swap); | 37 | int check_swap (int usp, long unsigned int free_swap); |
38 | int process_arguments (int argc, char **argv); | 38 | int process_arguments (int argc, char **argv); |
39 | int validate_arguments (void); | 39 | int validate_arguments (void); |
@@ -53,7 +53,7 @@ main (int argc, char **argv) | |||
53 | int percent_used, percent; | 53 | int percent_used, percent; |
54 | unsigned long long total_swap = 0, used_swap = 0, free_swap = 0; | 54 | unsigned long long total_swap = 0, used_swap = 0, free_swap = 0; |
55 | unsigned long long dsktotal = 0, dskused = 0, dskfree = 0, tmp = 0; | 55 | unsigned long long dsktotal = 0, dskused = 0, dskfree = 0, tmp = 0; |
56 | int result = STATE_OK; | 56 | int result = STATE_UNKNOWN; |
57 | char input_buffer[MAX_INPUT_BUFFER]; | 57 | char input_buffer[MAX_INPUT_BUFFER]; |
58 | char *perf; | 58 | char *perf; |
59 | int conv_factor = SWAP_CONVERSION; | 59 | int conv_factor = SWAP_CONVERSION; |