about summary refs log tree commit diff stats
path: root/src/xmpp/iq.c
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2014-01-05 21:17:07 +0000
committerJames Booth <boothj5@gmail.com>2014-01-05 21:17:07 +0000
commitb14d5707cb4941489fa57236239ce08a18c81a7a (patch)
treee2696dcc505c666580d7e2a872b763679bccbf96 /src/xmpp/iq.c
parent460a42c7c979d1eaed3eeb7210ff1178e04417d8 (diff)
downloadprofani-tty-b14d5707cb4941489fa57236239ce08a18c81a7a.tar.gz
Moved handle_disco_info to server_events
Diffstat (limited to 'src/xmpp/iq.c')
-rw-r--r--src/xmpp/iq.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmpp/iq.c b/src/xmpp/iq.c
index d3388cdd..8d42ede3 100644
--- a/src/xmpp/iq.c
+++ b/src/xmpp/iq.c
@@ -403,7 +403,7 @@ _iq_handle_discoinfo_result(xmpp_conn_t * const conn, xmpp_stanza_t * const stan
                 child = xmpp_stanza_get_next(child);
             }
 
-            prof_handle_disco_info(from, identities, features);
+            handle_disco_info(from, identities, features);
             g_slist_free_full(features, free);
             g_slist_free_full(identities, (GDestroyNotify)_identity_destroy);
         }
> 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207