Changeset 9c84617 for protocols/msn/sb.c


Ignore:
Timestamp:
2010-12-13T00:42:58Z (13 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
c5920df
Parents:
8eec79d
Message:

Silently adding /CTCP NUDGE support for MSN contacts.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/sb.c

    r8eec79d r9c84617  
    184184                        i = g_snprintf( buf, i, MSN_TYPING_HEADERS, sb->ic->acc->user );
    185185                }
     186                else if( strcmp( text, NUDGE_MESSAGE ) == 0 )
     187                {
     188                        buf = g_strdup( MSN_NUDGE_HEADERS );
     189                        i = strlen( buf );
     190                }
    186191                else if( strcmp( text, SB_KEEPALIVE_MESSAGE ) == 0 )
    187192                {
    188                         buf = g_strdup( SB_KEEPALIVE_HEADERS );
     193                        buf = g_strdup( MSN_SB_KEEPALIVE_HEADERS );
    189194                        i = strlen( buf );
    190195                }
Note: See TracChangeset for help on using the changeset viewer.