Ignore:
Timestamp:
2010-03-17T15:15:19Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
60e4df3
Parents:
1c3008a (diff), f9928cb (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.
Message:

Merging mainline.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/jabber/jabber_util.c

    r1c3008a re8c8d00  
    232232{
    233233        { "away",  "Away" },
    234         { "chat",  "Free for Chat" },
     234        { "chat",  "Free for Chat" },   /* WTF actually uses this? */
    235235        { "dnd",   "Do not Disturb" },
    236236        { "xa",    "Extended Away" },
    237         { "",      "Online" },
    238237        { "",      NULL }
    239238};
     
    242241{
    243242        int i;
     243       
     244        if( code == NULL )
     245                return NULL;
    244246       
    245247        for( i = 0; jabber_away_state_list[i].full_name; i ++ )
     
    253255{
    254256        int i;
     257       
     258        if( name == NULL )
     259                return NULL;
    255260       
    256261        for( i = 0; jabber_away_state_list[i].full_name; i ++ )
Note: See TracChangeset for help on using the changeset viewer.