Changeset 8eec79d


Ignore:
Timestamp:
2010-12-13T00:33:56Z (13 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
9c84617
Parents:
76c89dc7
Message:

MSN: Don't send any of the special messages offline since they creep people
out. :-)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/soap.c

    r76c89dc7 r8eec79d  
    562562        struct msn_soap_oim_send_data *data;
    563563       
     564        /* Don't send any of the special messages since they creep people out. :-) */
     565        if( strncmp( msg, "\r\r", 2 ) == 0 )
     566                return 0;
     567       
    564568        data = g_new0( struct msn_soap_oim_send_data, 1 );
    565569        data->to = g_strdup( to );
Note: See TracChangeset for help on using the changeset viewer.