summaryrefslogtreecommitdiffstats
path: root/plugins/netutils.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/netutils.c')
-rw-r--r--plugins/netutils.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/plugins/netutils.c b/plugins/netutils.c
index aee53d3..6702b13 100644
--- a/plugins/netutils.c
+++ b/plugins/netutils.c
@@ -27,6 +27,8 @@
27* along with this program; if not, write to the Free Software 27* along with this program; if not, write to the Free Software
28* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. 28* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29* 29*
30* $Id$
31*
30****************************************************************************/ 32****************************************************************************/
31 33
32#include "common.h" 34#include "common.h"
@@ -104,7 +106,7 @@ process_tcp_request2 (const char *server_address, int server_port,
104 106
105 send_result = send (sd, send_buffer, strlen (send_buffer), 0); 107 send_result = send (sd, send_buffer, strlen (send_buffer), 0);
106 if (send_result<0 || (size_t)send_result!=strlen(send_buffer)) { 108 if (send_result<0 || (size_t)send_result!=strlen(send_buffer)) {
107 printf ("send() failed\n"); 109 printf ("Send failed\n");
108 result = STATE_WARNING; 110 result = STATE_WARNING;
109 } 111 }
110 112
@@ -313,7 +315,7 @@ send_request (int sd, int proto, const char *send_buffer, char *recv_buffer, int
313 315
314 send_result = send (sd, send_buffer, strlen (send_buffer), 0); 316 send_result = send (sd, send_buffer, strlen (send_buffer), 0);
315 if (send_result<0 || (size_t)send_result!=strlen(send_buffer)) { 317 if (send_result<0 || (size_t)send_result!=strlen(send_buffer)) {
316 printf ("send() failed\n"); 318 printf ("Send failed\n");
317 result = STATE_WARNING; 319 result = STATE_WARNING;
318 } 320 }
319 321
@@ -337,7 +339,7 @@ send_request (int sd, int proto, const char *send_buffer, char *recv_buffer, int
337 if (recv_result == -1) { 339 if (recv_result == -1) {
338 strcpy (recv_buffer, ""); 340 strcpy (recv_buffer, "");
339 if (proto != IPPROTO_TCP) 341 if (proto != IPPROTO_TCP)
340 printf ("recv() failed\n"); 342 printf ("Receive failed\n");
341 result = STATE_WARNING; 343 result = STATE_WARNING;
342 } 344 }
343 else 345 else