Changeset b8c336b for protocols/jabber/hipchat.c
- Timestamp:
- 2015-05-09T19:50:30Z (10 years ago)
- Children:
- ec8b369
- Parents:
- 356e2dd (diff), 5014380 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/hipchat.c
r356e2dd rb8c336b 47 47 jd->flags &= ~JFLAG_STREAM_RESTART; 48 48 49 if (!jabber_get_roster(ic)) { 50 return XT_ABORT; 51 } 52 if (!jabber_iq_disco_server(ic)) { 53 return XT_ABORT; 54 } 55 if (!jabber_get_hipchat_profile(ic)) { 56 return XT_ABORT; 57 } 58 if (!jabber_iq_disco_muc(ic, muc_host)) { 49 if (!jabber_get_roster(ic) || 50 !jabber_iq_disco_server(ic) || 51 !jabber_get_hipchat_profile(ic) || 52 !jabber_iq_disco_muc(ic, muc_host)) { 59 53 return XT_ABORT; 60 54 } … … 84 78 { 85 79 struct xt_node *query, *name_node; 86 87 //char *name;88 80 89 81 if (!(query = xt_find_node(node->children, "query"))) {
Note: See TracChangeset
for help on using the changeset viewer.