diff options
author | James Booth <boothj5@gmail.com> | 2014-03-29 23:15:51 +0000 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2014-03-29 23:15:51 +0000 |
commit | 8f7bdc3c2ef7168ba9771d16cb2124d3f5dbd6fb (patch) | |
tree | 38663c0e566e1b346b3a1fa46cc66921185a091c /src/xmpp | |
parent | 7e27d96f16aebf6cbc3f32ec6d10e5ec20196ed7 (diff) | |
download | profani-tty-8f7bdc3c2ef7168ba9771d16cb2124d3f5dbd6fb.tar.gz |
Switch back to storage for muc bookmarks
Diffstat (limited to 'src/xmpp')
-rw-r--r-- | src/xmpp/stanza.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmpp/stanza.c b/src/xmpp/stanza.c index 692d310e..38b72004 100644 --- a/src/xmpp/stanza.c +++ b/src/xmpp/stanza.c @@ -36,8 +36,9 @@ static int _field_compare(FormField *f1, FormField *f2); +#if 0 xmpp_stanza_t * -stanza_create_storage_bookmarks(xmpp_ctx_t *ctx) +stanza_create_pubsub_bookmarks(xmpp_ctx_t *ctx) { xmpp_stanza_t *iq, *pubsub, *items; @@ -62,8 +63,8 @@ stanza_create_storage_bookmarks(xmpp_ctx_t *ctx) return iq; } +#endif -#if 0 xmpp_stanza_t * stanza_create_storage_bookmarks(xmpp_ctx_t *ctx) { @@ -91,7 +92,6 @@ stanza_create_storage_bookmarks(xmpp_ctx_t *ctx) return iq; } -#endif xmpp_stanza_t * stanza_create_chat_state(xmpp_ctx_t *ctx, const char * const recipient, |