mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-06-08 16:26:23 -04:00
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:
parent
b31198c6ff
commit
f2e6c3bed8
1 changed files with 3 additions and 3 deletions
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Reference in a new issue