about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-01-27 21:48:44 +0000
committerJames Booth <boothj5@gmail.com>2014-01-27 21:48:44 +0000
commit678a5bd05c465e059c17fc94329a9a6620254950 (patch)
treef7c3ad13c23651409820c2dc293f3c2d163bc63b /src/xmpp
parentda94dcf3cfa65ca888b323ba08d76bf068e03937 (diff)
downloadprofani-tty-678a5bd05c465e059c17fc94329a9a6620254950.tar.gz
Fixed comment
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/message.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/message.c b/src/xmpp/message.c
index 92ab3374..57699e31 100644
--- a/src/xmpp/message.c
+++ b/src/xmpp/message.c
@@ -222,7 +222,7 @@ _message_error_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza,
         type = xmpp_stanza_get_attribute(error_stanza, STANZA_ATTR_TYPE);
     }
 
-    // handle recipient not found ('from' contains a value and type is 'cancel'
+    // handle recipient not found ('from' contains a value and type is 'cancel')
     if ((from != NULL) && ((type != NULL && (strcmp(type, "cancel") == 0)))) {
         handle_recipient_not_found(from, err_msg);
     }