about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-09-27 18:32:21 +0100
committerJames Booth <boothj5@gmail.com>2015-09-27 18:32:21 +0100
commitfe22fea9a81d097f8b4cda60d6a63db3a5220a5a (patch)
tree69214aeef3a89747f37d6b2e9b2fceaf0b75ee96 /src
parent6f2487c5c10dbbacae4decfc138f0b1b98908dbc (diff)
downloadprofani-tty-fe22fea9a81d097f8b4cda60d6a63db3a5220a5a.tar.gz
Fixed spelling mistake
Diffstat (limited to 'src')
-rw-r--r--src/xmpp/iq.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c
index 7b57c1af..f1f7d212 100644
--- a/src/xmpp/iq.c
+++ b/src/xmpp/iq.c
@@ -867,13 +867,13 @@ _version_result_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
 
     xmpp_stanza_t *query = xmpp_stanza_get_child_by_name(stanza, STANZA_NAME_QUERY);
     if (query == NULL) {
-        log_error("Software version result recieved with no query element.");
+        log_error("Software version result received with no query element.");
         return 0;
     }
 
     char *ns = xmpp_stanza_get_ns(query);
     if (g_strcmp0(ns, STANZA_NS_VERSION) != 0) {
-        log_error("Software version result recieved without namespace.");
+        log_error("Software version result received without namespace.");
         return 0;
     }