Fix for broken check_mrtgtraf

git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1624 f882894a-f735-0410-b71e-b25c423dba1c
This commit is contained in:
Ethan Galstad 2007-03-02 01:38:04 +00:00
parent b31198c6ff
commit f2e6c3bed8

View file

@ -3,7 +3,7 @@
* Nagios check_mrtgtraf plugin
*
* License: GPL
* Copyright (c) 1999-2006 nagios-plugins team
* Copyright (c) 1999-2007 nagios-plugins team
*
* Last Modified: $Date$
*
@ -40,7 +40,7 @@
const char *progname = "check_mrtgtraf";
const char *revision = "$Revision$";
const char *copyright = "1999-2006";
const char *copyright = "1999-2007";
const char *email = "nagiosplug-devel@lists.sourceforge.net";
int process_arguments (int, char **);
@ -60,7 +60,7 @@ unsigned long outgoing_critical_threshold = 0L;
int
main (int argc, char **argv)
{
int result = STATE_UNKNOWN;
int result = STATE_OK;
FILE *fp;
int line;
char input_buffer[MAX_INPUT_BUFFER];