summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: d2f56c4)
raw | patch | inline | side by side (parent: d2f56c4)
author | Thomas Guyot-Sionnest <dermoth@aei.ca> | |
Wed, 3 Dec 2008 13:00:05 +0000 (08:00 -0500) | ||
committer | Thomas Guyot-Sionnest <dermoth@aei.ca> | |
Wed, 3 Dec 2008 13:00:05 +0000 (08:00 -0500) |
NEWS | patch | blob | history | |
THANKS.in | patch | blob | history | |
plugins/check_mrtg.c | patch | blob | history |
index 729beae3ec3814fa17371b464eb6d15cac2f07ba..b37fe700b59ba7bf244ef29fb5c75ffca4b3c01a 100644 (file)
--- a/NEWS
+++ b/NEWS
check_disk: make autofs mount paths specified with -p before we determing the mount list (Erik Welch)
Fixed buffer overflow in check_ntp/check_ntp_peer (#1999319, Ubuntu #291265)
Re-bundled libtap as a built-in library (--enable-libtap): detects system library as pre-1.4.13 and does not install the built-in library anymore
+ Fixed check_mrtg returning UNKNOWN instead of OK (bug #2378068)
1.4.13 25th Sept 2008
Fix Debian bug #460097: check_http --max-age broken (Hilko Bengen)
diff --git a/THANKS.in b/THANKS.in
index 7784be9add611cc7efe300c561a98c017897b63a..eb6158afbee145d69599c6ba9449799f9411ea13 100644 (file)
--- a/THANKS.in
+++ b/THANKS.in
Dieter Van de Walle
Jan Lipphaus
Erik Welch
+Nik Soggia
diff --git a/plugins/check_mrtg.c b/plugins/check_mrtg.c
index 550326b1405bce6829bd01d9c34738f5f2ee1616..65260ed1bae406c8da0ff55d98ab65fc180e7467 100644 (file)
--- a/plugins/check_mrtg.c
+++ b/plugins/check_mrtg.c
int
main (int argc, char **argv)
{
- int result = STATE_UNKNOWN;
+ int result = STATE_OK;
FILE *fp;
int line;
char input_buffer[MAX_INPUT_BUFFER];