From 016d33230eb4fffd7e1f5644ce4901cb4d01f4e3 Mon Sep 17 00:00:00 2001 From: Benoit Mortier Date: Fri, 3 Dec 2004 00:55:28 +0000 Subject: 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 --- plugins/check_swap.c | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'plugins/check_swap.c') diff --git a/plugins/check_swap.c b/plugins/check_swap.c index 608080ac..6857a01b 100644 --- a/plugins/check_swap.c +++ b/plugins/check_swap.c @@ -25,15 +25,15 @@ * *****************************************************************************/ -#include "common.h" -#include "popen.h" -#include "utils.h" - const char *progname = "check_swap"; const char *revision = "$Revision$"; -const char *copyright = "2000-2003"; +const char *copyright = "2000-2004"; const char *email = "nagiosplug-devel@lists.sourceforge.net"; +#include "common.h" +#include "popen.h" +#include "utils.h" + int check_swap (int usp, long unsigned int free_swap); int process_arguments (int argc, char **argv); int validate_arguments (void); @@ -53,7 +53,7 @@ main (int argc, char **argv) int percent_used, percent; unsigned long long total_swap = 0, used_swap = 0, free_swap = 0; unsigned long long dsktotal = 0, dskused = 0, dskfree = 0, tmp = 0; - int result = STATE_OK; + int result = STATE_UNKNOWN; char input_buffer[MAX_INPUT_BUFFER]; char *perf; int conv_factor = SWAP_CONVERSION; -- cgit v1.2.3