diff options
author | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2004-02-20 05:25:13 +0000 |
---|---|---|
committer | Karl DeBisschop <kdebisschop@users.sourceforge.net> | 2004-02-20 05:25:13 +0000 |
commit | c5f0ee256bc9508e19b86003c5327ffafd2de28e (patch) | |
tree | 83091841ff915e980e80575cc229ad8774b20e11 | |
parent | 7ba54264fb8b614f0ea0bc9eab5c974e2dca7cd8 (diff) | |
download | monitoring-plugins-c5f0ee256bc9508e19b86003c5327ffafd2de28e.tar.gz |
spell fix "received"
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@818 f882894a-f735-0410-b71e-b25c423dba1c
-rw-r--r-- | contrib/check_dhcp.c | 2 | ||||
-rw-r--r-- | plugins/check_snmp.c | 2 | ||||
-rw-r--r-- | plugins/negate.c | 2 | ||||
-rw-r--r-- | plugins/netutils.c | 4 | ||||
-rw-r--r-- | plugins/urlize.c | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/contrib/check_dhcp.c b/contrib/check_dhcp.c index 2aea579d..7aa87ace 100644 --- a/contrib/check_dhcp.c +++ b/contrib/check_dhcp.c @@ -470,7 +470,7 @@ int receive_dhcp_packet(void *buffer, int buffer_size, int sock, int timeout, st /* make sure some data has arrived */ if(!FD_ISSET(sock,&readfds)){ #ifdef DEBUG - printf("No (more) data recieved\n"); + printf("No (more) data received\n"); #endif return ERROR; } diff --git a/plugins/check_snmp.c b/plugins/check_snmp.c index 750c47ea..b17a4177 100644 --- a/plugins/check_snmp.c +++ b/plugins/check_snmp.c @@ -319,7 +319,7 @@ main (int argc, char **argv) if (found == 0) die (STATE_UNKNOWN, - _("%s problem - No data recieved from host\nCMD: %s\n"), + _("%s problem - No data received from host\nCMD: %s\n"), label, command_line); diff --git a/plugins/negate.c b/plugins/negate.c index 874aea14..3dd3411f 100644 --- a/plugins/negate.c +++ b/plugins/negate.c @@ -105,7 +105,7 @@ main (int argc, char **argv) if (!found) die (STATE_UNKNOWN, - _("%s problem - No data recieved from host\nCMD: %s\n"),\ + _("%s problem - No data received from host\nCMD: %s\n"),\ argv[0], command_line); /* close the pipe */ diff --git a/plugins/netutils.c b/plugins/netutils.c index 8c5deb04..55f02cad 100644 --- a/plugins/netutils.c +++ b/plugins/netutils.c @@ -121,7 +121,7 @@ process_tcp_request2 (const char *server_address, int server_port, if (!FD_ISSET (sd, &readfds)) { /* it hasn't */ if (!recv_length) { strcpy (recv_buffer, ""); - printf ("No data was recieved from host!\n"); + printf ("No data was received from host!\n"); result = STATE_WARNING; } else { /* this one failed, but previous ones worked */ @@ -197,7 +197,7 @@ process_request (const char *server_address, int server_port, int proto, /* make sure some data has arrived */ if (!FD_ISSET (sd, &readfds)) { strcpy (recv_buffer, ""); - printf ("No data was recieved from host!\n"); + printf ("No data was received from host!\n"); result = STATE_WARNING; } diff --git a/plugins/urlize.c b/plugins/urlize.c index 45766d0c..141cc84a 100644 --- a/plugins/urlize.c +++ b/plugins/urlize.c @@ -102,7 +102,7 @@ main (int argc, char **argv) if (!found) die (STATE_UNKNOWN, - _("%s problem - No data recieved from host\nCMD: %s</A>\n"), + _("%s problem - No data received from host\nCMD: %s</A>\n"), argv[0], cmd); /* close the pipe */ |