Commit d15db081 authored by Jakub Adam's avatar Jakub Adam

agent: Fix spelling

Errors reported by lintian -EvIL -pedantic.
parent 6b1eec06
...@@ -4128,7 +4128,7 @@ gboolean conn_check_handle_inbound_stun (NiceAgent *agent, NiceStream *stream, ...@@ -4128,7 +4128,7 @@ gboolean conn_check_handle_inbound_stun (NiceAgent *agent, NiceStream *stream,
} }
if (valid != STUN_VALIDATION_SUCCESS) { if (valid != STUN_VALIDATION_SUCCESS) {
nice_debug ("Agent %p : STUN message is unsuccessfull %d, ignoring", agent, valid); nice_debug ("Agent %p : STUN message is unsuccessful %d, ignoring", agent, valid);
return FALSE; return FALSE;
} }
......
...@@ -143,7 +143,7 @@ nice_interfaces_get_local_interfaces (void) ...@@ -143,7 +143,7 @@ nice_interfaces_get_local_interfaces (void)
struct ifconf ifc; struct ifconf ifc;
if ((sockfd = socket (AF_INET, SOCK_DGRAM, IPPROTO_IP)) < 0) { if ((sockfd = socket (AF_INET, SOCK_DGRAM, IPPROTO_IP)) < 0) {
nice_debug ("error : Cannot open socket to retreive interface list"); nice_debug ("error : Cannot open socket to retrieve interface list");
return NULL; return NULL;
} }
...@@ -312,7 +312,7 @@ nice_interfaces_get_local_ips (gboolean include_loopback) ...@@ -312,7 +312,7 @@ nice_interfaces_get_local_ips (gboolean include_loopback)
gchar *loopback = NULL; gchar *loopback = NULL;
if ((sockfd = socket (AF_INET, SOCK_DGRAM, IPPROTO_IP)) < 0) { if ((sockfd = socket (AF_INET, SOCK_DGRAM, IPPROTO_IP)) < 0) {
nice_debug ("Error : Cannot open socket to retreive interface list"); nice_debug ("Error : Cannot open socket to retrieve interface list");
return NULL; return NULL;
} }
...@@ -395,7 +395,7 @@ nice_interfaces_get_ip_for_interface (gchar *interface_name) ...@@ -395,7 +395,7 @@ nice_interfaces_get_ip_for_interface (gchar *interface_name)
g_strlcpy (ifr.ifr_name, interface_name, sizeof (ifr.ifr_name)); g_strlcpy (ifr.ifr_name, interface_name, sizeof (ifr.ifr_name));
if ((sockfd = socket (AF_INET, SOCK_DGRAM, IPPROTO_IP)) < 0) { if ((sockfd = socket (AF_INET, SOCK_DGRAM, IPPROTO_IP)) < 0) {
nice_debug ("Error : Cannot open socket to retreive interface list"); nice_debug ("Error : Cannot open socket to retrieve interface list");
return NULL; return NULL;
} }
...@@ -458,7 +458,7 @@ SOCKET nice_interfaces_get_WSA_socket () ...@@ -458,7 +458,7 @@ SOCKET nice_interfaces_get_WSA_socket ()
if ((sock = socket (AF_INET, SOCK_DGRAM, 0)) == INVALID_SOCKET) { if ((sock = socket (AF_INET, SOCK_DGRAM, 0)) == INVALID_SOCKET) {
nice_debug ("Error : Could not open socket to retreive interface list," nice_debug ("Error : Could not open socket to retrieve interface list,"
" error no : %d", WSAGetLastError ()); " error no : %d", WSAGetLastError ());
return INVALID_SOCKET; return INVALID_SOCKET;
} }
......
...@@ -168,7 +168,7 @@ stun_usage_ice_conncheck_create (StunAgent *agent, StunMessage *msg, ...@@ -168,7 +168,7 @@ stun_usage_ice_conncheck_create (StunAgent *agent, StunMessage *msg,
* @compatibility: The compatibility mode to use for processing the conncheck * @compatibility: The compatibility mode to use for processing the conncheck
* response * response
* *
* Process an ICE connectivity check STUN message and retreive the * Process an ICE connectivity check STUN message and retrieve the
* mapped address from the message * mapped address from the message
* <para> See also stun_usage_ice_conncheck_priority() and * <para> See also stun_usage_ice_conncheck_priority() and
* stun_usage_ice_conncheck_use_candidate() </para> * stun_usage_ice_conncheck_use_candidate() </para>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment