summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2007-01-20 06:07:48 (GMT)
committerThomas Guyot-Sionnest <dermoth@users.sourceforge.net>2007-01-20 06:07:48 (GMT)
commite6d99d8ec38cc7bfd5d7021e102bdc8da7033dc0 (patch)
tree14fbf8329ab0d385f336e39215a978bdafad39c6
parente4af02e9ddec21d6ea2c8399b7c5d9d9c1e6e8e8 (diff)
downloadmonitoring-plugins-e6d99d8ec38cc7bfd5d7021e102bdc8da7033dc0.tar.gz
Fix bug #1632072 pointer error in plugins/netutils.c. Add changelog entry for previous commit.
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1568 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r--CHANGES2
-rw-r--r--THANKS.in1
-rw-r--r--plugins/netutils.c2
3 files changed, 4 insertions, 1 deletions
diff --git a/CHANGES b/CHANGES
index d1abed0..05d3ba2 100644
--- a/CHANGES
+++ b/CHANGES
@@ -7,6 +7,8 @@ This file documents the major additions and syntax changes between releases.
7 Fixed check_swap for HP/UX where swapinfo command was incorrect 7 Fixed check_swap for HP/UX where swapinfo command was incorrect
8 Fixed check_disk inode threshold checks, regressed at r1.4.4. 8 Fixed check_disk inode threshold checks, regressed at r1.4.4.
9 Fixed crit/warn for check_disk perf data 9 Fixed crit/warn for check_disk perf data
10 Fixed buffer overflow in check_procs
11 Fixed error handling for UNIX sockets in netutils.c
10 12
111.4.5 131.4.5
12 Fixed bug in perl's is_hostname routine 14 Fixed bug in perl's is_hostname routine
diff --git a/THANKS.in b/THANKS.in
index 9624911..0d0f4a5 100644
--- a/THANKS.in
+++ b/THANKS.in
@@ -206,3 +206,4 @@ Dick van den Burg
206Matthias Eble 206Matthias Eble
207Sebastian Schubert 207Sebastian Schubert
208Jason Hoos 208Jason Hoos
209Chris Grim
diff --git a/plugins/netutils.c b/plugins/netutils.c
index 9294f3a..e6ffc54 100644
--- a/plugins/netutils.c
+++ b/plugins/netutils.c
@@ -225,7 +225,7 @@ np_net_connect (const char *host_name, int port, int *sd, int proto)
225 su.sun_family = AF_UNIX; 225 su.sun_family = AF_UNIX;
226 strncpy(su.sun_path, host_name, UNIX_PATH_MAX); 226 strncpy(su.sun_path, host_name, UNIX_PATH_MAX);
227 *sd = socket(PF_UNIX, SOCK_STREAM, 0); 227 *sd = socket(PF_UNIX, SOCK_STREAM, 0);
228 if(sd < 0){ 228 if(*sd < 0){
229 die(STATE_UNKNOWN, _("Socket creation failed")); 229 die(STATE_UNKNOWN, _("Socket creation failed"));
230 } 230 }
231 result = connect(*sd, (struct sockaddr *)&su, sizeof(su)); 231 result = connect(*sd, (struct sockaddr *)&su, sizeof(su));