# HG changeset patch # User Mikael Berthe # Date 1128876934 -7200 # Node ID 3f5aa485268428fda069bc2bae715fbf052b9bdd # Parent dba5de0b89bc3f1ef8557a3e0e1274f83ff851bc Fix small bug in roster_setstatus() For an existing resource, the priority was not updated. diff -r dba5de0b89bc -r 3f5aa4852684 mcabber/src/roster.c --- a/mcabber/src/roster.c Sun Oct 09 12:12:47 2005 +0200 +++ b/mcabber/src/roster.c Sun Oct 09 18:55:34 2005 +0200 @@ -397,6 +397,7 @@ // New or updated resource p_res = get_or_add_resource(roster_usr, resname, prio); + p_res->prio = prio; p_res->status = bstat; if (p_res->status_msg) { g_free((gchar*)p_res->status_msg);