summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS1
-rw-r--r--THANKS.in1
-rw-r--r--plugins-root/pst3.c2
3 files changed, 4 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index 451b654..2e3bf25 100644
--- a/NEWS
+++ b/NEWS
@@ -41,6 +41,7 @@ This file documents the major additions and syntax changes between releases.
41 check_fping now supports passing target timeout and interval to fping (#2347686 - Martin Foster) 41 check_fping now supports passing target timeout and interval to fping (#2347686 - Martin Foster)
42 Fixed SNMPv3 behaviour of check_ifoperstatus and check_ifstatus. Added -P to define privprotocol (#2343438 - Robin Schroeder) 42 Fixed SNMPv3 behaviour of check_ifoperstatus and check_ifstatus. Added -P to define privprotocol (#2343438 - Robin Schroeder)
43 check_ifoperstatus and check_ifstatus are now more user-friendly in case of missing arguments 43 check_ifoperstatus and check_ifstatus are now more user-friendly in case of missing arguments
44 pst3 compile fix for Sun Studio Compiler (Grant Byers)
44 45
451.4.13 25th Sept 2008 461.4.13 25th Sept 2008
46 Fix Debian bug #460097: check_http --max-age broken (Hilko Bengen) 47 Fix Debian bug #460097: check_http --max-age broken (Hilko Bengen)
diff --git a/THANKS.in b/THANKS.in
index aba48c6..038ad93 100644
--- a/THANKS.in
+++ b/THANKS.in
@@ -255,3 +255,4 @@ Martin Foster
255Joe Presbrey 255Joe Presbrey
256Will Preston 256Will Preston
257Nikita Kalabukhov 257Nikita Kalabukhov
258Grant Byers
diff --git a/plugins-root/pst3.c b/plugins-root/pst3.c
index 8513656..7586d5f 100644
--- a/plugins-root/pst3.c
+++ b/plugins-root/pst3.c
@@ -43,6 +43,8 @@
43 43
44#include <stdio.h> 44#include <stdio.h>
45#include <stdlib.h> 45#include <stdlib.h>
46#include <string.h>
47#include <unistd.h>
46#include <dirent.h> 48#include <dirent.h>
47#include <errno.h> 49#include <errno.h>
48#include <fcntl.h> 50#include <fcntl.h>