diff options
author | James Booth <boothj5@gmail.com> | 2014-01-05 20:52:45 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-01-05 20:52:45 +0000 |
commit | 87cdbe015a8dfe20067b2933322a7c9ca17745f2 (patch) | |
tree | 6710efa4bc120e5cea4c0906b1a7d537beda41ce /src/xmpp | |
parent | 4a8d6c2153a9ca4a3fb6f0ddc20e1d6c6e2107e6 (diff) | |
download | profani-tty-87cdbe015a8dfe20067b2933322a7c9ca17745f2.tar.gz |
Added server_events.c
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/connection.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/xmpp/connection.c b/src/xmpp/connection.c index f38da800..d2c2c6f7 100644 --- a/src/xmpp/connection.c +++ b/src/xmpp/connection.c @@ -33,6 +33,7 @@ #include "log.h" #include "muc.h" #include "profanity.h" +#include "server_events.h" #include "xmpp/bookmark.h" #include "xmpp/capabilities.h" #include "xmpp/connection.h" @@ -349,7 +350,7 @@ connection_error_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, if (text_stanza != NULL) { err_msg = xmpp_stanza_get_text(text_stanza); if (err_msg != NULL) { - prof_handle_error_message(from, err_msg); + handle_error_message(from, err_msg); xmpp_free(ctx, err_msg); } @@ -364,7 +365,7 @@ connection_error_handler(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza, } else { err_msg = xmpp_stanza_get_name(err_cond); - prof_handle_error_message(from, err_msg); + handle_error_message(from, err_msg); // TODO : process 'type' attribute from <error/> [RFC6120, 8.3.2] } |