about summary refs log tree commit diff stats
path: root/src/xmpp
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-01-05 21:11:09 +0000
committerJames Booth <boothj5@gmail.com>2014-01-05 21:11:09 +0000
commit460a42c7c979d1eaed3eeb7210ff1178e04417d8 (patch)
tree8f903e1d2cdd9759ad32ce5d9165827138d90e5e /src/xmpp
parent42fd1fb13e6273050226204a125919acfa92be4f (diff)
downloadprofani-tty-460a42c7c979d1eaed3eeb7210ff1178e04417d8.tar.gz
Moved handle_software_version_result to server_events
Diffstat (limited to 'src/xmpp')
-rw-r--r--src/xmpp/iq.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c
index 369d7f7e..d3388cdd 100644
--- a/src/xmpp/iq.c
+++ b/src/xmpp/iq.c
@@ -35,6 +35,7 @@
 #include "log.h"
 #include "muc.h"
 #include "profanity.h"
+#include "server_events.h"
 #include "xmpp/capabilities.h"
 #include "xmpp/connection.h"
 #include "xmpp/stanza.h"
@@ -173,7 +174,7 @@ _iq_handle_version_result(xmpp_conn_t * const conn, xmpp_stanza_t * const stanza
 
     Resource *resource = p_contact_get_resource(contact, jidp->resourcepart);
     const char *presence = string_from_resource_presence(resource->presence);
-    prof_handle_version_result(jid, presence, name_str, version_str, os_str);
+    handle_software_version_result(jid, presence, name_str, version_str, os_str);
 
     jid_destroy(jidp);