# HG changeset patch # User Nathan Walp # Date 1094681723 0 # Node ID bd5517471d99cd69af32e66a39b6d271cb56303d # Parent e4d97133809302ee689b4cdd37584b548e89a81d [gaim-migrate @ 10903] i thought I committed these committer: Tailor Script diff -r e4d971338093 -r bd5517471d99 src/protocols/jabber/presence.c --- a/src/protocols/jabber/presence.c Wed Sep 08 20:43:41 2004 +0000 +++ b/src/protocols/jabber/presence.c Wed Sep 08 22:15:23 2004 +0000 @@ -71,9 +71,9 @@ jabber_buddy_track_resource(jb, js->user->resource, priority, state, msg); } if((jbr = jabber_buddy_find_resource(jb, NULL))) { - gaim_prpl_got_user_status(js->gc->account, my_base_jid, jabber_buddy_state_get_status_id(jbr->state), "priority", jbr->priority, jbr->status ? "message" : NULL, jbr->status); + gaim_prpl_got_user_status(js->gc->account, my_base_jid, jabber_buddy_state_get_status_id(jbr->state), "priority", jbr->priority, jbr->status ? "message" : NULL, jbr->status, NULL); } else { - gaim_prpl_got_user_status(js->gc->account, my_base_jid, "offline", msg ? "message" : NULL, msg); + gaim_prpl_got_user_status(js->gc->account, my_base_jid, "offline", msg ? "message" : NULL, msg, NULL); } } } @@ -431,10 +431,10 @@ if((found_jbr = jabber_buddy_find_resource(jb, NULL))) { if(!jbr || jbr == found_jbr) { - gaim_prpl_got_user_status(js->gc->account, buddy_name, jabber_buddy_state_get_status_id(state), "priority", found_jbr->priority, found_jbr->status ? "message" : NULL, found_jbr->status); + gaim_prpl_got_user_status(js->gc->account, buddy_name, jabber_buddy_state_get_status_id(state), "priority", found_jbr->priority, found_jbr->status ? "message" : NULL, found_jbr->status, NULL); } } else { - gaim_prpl_got_user_status(js->gc->account, buddy_name, "offline", status ? "message" : NULL, status); + gaim_prpl_got_user_status(js->gc->account, buddy_name, "offline", status ? "message" : NULL, status, NULL); } g_free(buddy_name); } diff -r e4d971338093 -r bd5517471d99 src/protocols/jabber/roster.c --- a/src/protocols/jabber/roster.c Wed Sep 08 20:43:41 2004 +0000 +++ b/src/protocols/jabber/roster.c Wed Sep 08 22:15:23 2004 +0000 @@ -278,7 +278,7 @@ } else if((jbr =jabber_buddy_find_resource(jb, NULL))) { gaim_prpl_got_user_status(gc->account, who, jabber_buddy_state_get_status_id(jbr->state), - "priority", jbr->priority, jbr->status ? "message" : NULL, jbr->status); + "priority", jbr->priority, jbr->status ? "message" : NULL, jbr->status, NULL); } g_free(my_bare_jid);