diff options
author | James Booth <boothj5@gmail.com> | 2015-09-27 18:32:21 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2015-09-27 18:32:21 +0100 |
commit | fe22fea9a81d097f8b4cda60d6a63db3a5220a5a (patch) | |
tree | 69214aeef3a89747f37d6b2e9b2fceaf0b75ee96 | |
parent | 6f2487c5c10dbbacae4decfc138f0b1b98908dbc (diff) | |
download | profani-tty-fe22fea9a81d097f8b4cda60d6a63db3a5220a5a.tar.gz |
Fixed spelling mistake
-rw-r--r-- | src/xmpp/iq.c | 4 |
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; } |