diff options
author | James Booth <boothj5@gmail.com> | 2014-01-26 22:19:22 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-26 22:19:22 +0000 |
commit | 50f1a5ecc0686cf22fc2c9d5766a4954a24fe5d5 (patch) | |
tree | 72134954d761ce8d69f4d2ff5fde248cfff4914a /src/xmpp | |
parent | 292ae567aa0766dba4975c02379ec0e4a4ac3ecd (diff) | |
download | profani-tty-50f1a5ecc0686cf22fc2c9d5766a4954a24fe5d5.tar.gz |
Changed error message when couldn't join room
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/message.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xmpp/message.c b/src/xmpp/message.c index bb5c58eb..d814d59d 100644 --- a/src/xmpp/message.c +++ b/src/xmpp/message.c @@ -211,8 +211,9 @@ _message_error_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, // handle recipient not found if ((from != NULL) && ((type != NULL && (strcmp(type, "cancel") == 0)))) { - log_info("Recipient %s not found.", from); - handle_recipient_not_found(from); + char *cpy = strdup(from); + log_info("Recipient %s not found.", cpy); + handle_recipient_not_found(cpy); } return 1; |