# HG changeset patch # User Mikael Berthe # Date 1196286168 -3600 # Node ID 61fc9eddf7630669d7e9af90039fccfedf1b3194 # Parent cd9182f0b5c7303a730cfdfa322bd4ae8128df0f Small code cleanup diff -r cd9182f0b5c7 -r 61fc9eddf763 mcabber/src/jabglue.c --- a/mcabber/src/jabglue.c Tue Nov 27 23:57:20 2007 +0100 +++ b/mcabber/src/jabglue.c Wed Nov 28 22:42:48 2007 +0100 @@ -48,6 +48,16 @@ '_', 'o', 'f', 'd', 'n', 'a', 'i', '\0' }; +static char *imstatus_showmap[] = { + "", + "", + "chat", + "dnd", + "xa", + "away", + "" +}; + static time_t LastPingTime; static unsigned int KeepaliveDelay; static enum imstatus mystatus = offline; @@ -401,23 +411,11 @@ switch(st) { case away: - xmlnode_insert_cdata(xmlnode_insert_tag(x, "show"), "away", - (unsigned) -1); - break; - + case notavail: case dontdisturb: - xmlnode_insert_cdata(xmlnode_insert_tag(x, "show"), "dnd", - (unsigned) -1); - break; - case freeforchat: - xmlnode_insert_cdata(xmlnode_insert_tag(x, "show"), "chat", - (unsigned) -1); - break; - - case notavail: - xmlnode_insert_cdata(xmlnode_insert_tag(x, "show"), "xa", - (unsigned) -1); + xmlnode_insert_cdata(xmlnode_insert_tag(x, "show"), + imstatus_showmap[st], (unsigned) -1); break; case invisible: @@ -688,7 +686,7 @@ * "Until receiving a reply to the initial content message (or a standalone * notification) from the Contact, the User MUST NOT send subsequent chat * state notifications to the Contact." - * In our implementation support is initially "unknown", they it's "probed" + * In our implementation support is initially "unknown", then it's "probed" * and can become "ok". */ if (jep85 && (jep85->support == CHATSTATES_SUPPORT_OK ||