From 678a5bd05c465e059c17fc94329a9a6620254950 Mon Sep 17 00:00:00 2001 From: James Booth Date: Mon, 27 Jan 2014 21:48:44 +0000 Subject: [PATCH] Fixed comment --- src/xmpp/message.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }