summaryrefslogtreecommitdiffstats
path: root/avahi-core
diff options
context:
space:
mode:
Diffstat (limited to 'avahi-core')
-rw-r--r--avahi-core/iface.c2
-rw-r--r--avahi-core/socket.c4
-rw-r--r--avahi-core/wide-area.c4
3 files changed, 5 insertions, 5 deletions
diff --git a/avahi-core/iface.c b/avahi-core/iface.c
index f90a61a..8098de4 100644
--- a/avahi-core/iface.c
+++ b/avahi-core/iface.c
@@ -799,7 +799,7 @@ AvahiIfIndex avahi_find_interface_for_address(AvahiInterfaceMonitor *m, const Av
assert(m);
/* Some stupid OS don't support passing the interface index when a
- * packet is recieved. We have to work around that limitation by
+ * packet is received. We have to work around that limitation by
* looking for an interface that has the incoming address
* attached. This is sometimes ambiguous, but we have to live with
* it. */
diff --git a/avahi-core/socket.c b/avahi-core/socket.c
index 61b5eb4..ddd1482 100644
--- a/avahi-core/socket.c
+++ b/avahi-core/socket.c
@@ -670,7 +670,7 @@ AvahiDnsPacket *avahi_recv_dns_packet_ipv4(
if ((l = recvmsg(fd, &msg, 0)) < 0) {
/* Linux returns EAGAIN when an invalid IP packet has been
- recieved. We suppress warnings in this case because this might
+ received. We suppress warnings in this case because this might
create quite a bit of log traffic on machines with unstable
links. (See #60) */
@@ -824,7 +824,7 @@ AvahiDnsPacket *avahi_recv_dns_packet_ipv6(
if ((l = recvmsg(fd, &msg, 0)) < 0) {
/* Linux returns EAGAIN when an invalid IP packet has been
- recieved. We suppress warnings in this case because this might
+ received. We suppress warnings in this case because this might
create quite a bit of log traffic on machines with unstable
links. (See #60) */
diff --git a/avahi-core/wide-area.c b/avahi-core/wide-area.c
index bf3f60d..add81c7 100644
--- a/avahi-core/wide-area.c
+++ b/avahi-core/wide-area.c
@@ -515,7 +515,7 @@ static void handle_packet(AvahiWideAreaLookupEngine *e, AvahiDnsPacket *p) {
AvahiKey *k;
if (!(k = avahi_dns_packet_consume_key(p, NULL))) {
- avahi_log_warn(__FILE__": Wide area response packet too short or invalid while reading question key. (Maybe an UTF8 problem?)");
+ avahi_log_warn(__FILE__": Wide area response packet too short or invalid while reading question key. (Maybe a UTF-8 problem?)");
avahi_server_set_errno(e->server, AVAHI_ERR_INVALID_PACKET);
final_event = AVAHI_BROWSER_FAILURE;
goto finish;
@@ -532,7 +532,7 @@ static void handle_packet(AvahiWideAreaLookupEngine *e, AvahiDnsPacket *p) {
AvahiRecord *rr;
if (!(rr = avahi_dns_packet_consume_record(p, NULL))) {
- avahi_log_warn(__FILE__": Wide area response packet too short or invalid while reading response ecord. (Maybe an UTF8 problem?)");
+ avahi_log_warn(__FILE__": Wide area response packet too short or invalid while reading response record. (Maybe a UTF-8 problem?)");
avahi_server_set_errno(e->server, AVAHI_ERR_INVALID_PACKET);
final_event = AVAHI_BROWSER_FAILURE;
goto finish;