summaryrefslogtreecommitdiffstats
path: root/plugins/netutils.c
diff options
context:
space:
mode:
authorBenoit Mortier <opensides@users.sourceforge.net>2004-12-01 23:54:51 (GMT)
committerBenoit Mortier <opensides@users.sourceforge.net>2004-12-01 23:54:51 (GMT)
commitd19edd4043c498626fe68308005947975ef0a697 (patch)
tree7a213ee16f9331e928b1c32aa6c521c05519db58 /plugins/netutils.c
parent1d8128e328f714258b7fec0c62245e1d187e0439 (diff)
downloadmonitoring-plugins-d19edd4043c498626fe68308005947975ef0a697.tar.gz
standardize localization string
standardize unknow arguments git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@969 f882894a-f735-0410-b71e-b25c423dba1c
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