Changeset 1c3008a for protocols/msn


Ignore:
Timestamp:
2009-12-13T14:48:56Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
e8c8d00
Parents:
2288705
Message:

No functional changes, just some style "fixes". Although I admit I'm
somewhat growing out of my own coding style, I do try to keep things
consistent at least within files.

Comments are now in reviewboard:

http://code.bitlbee.org/rb/r/13/

Location:
protocols/msn
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/Makefile

    r2288705 r1c3008a  
    1010
    1111# [SH] Program variables
    12 objects = msn.o msn_util.o ns.o passport.o sb.o tables.o invitation.o
     12objects = invitation.o msn.o msn_util.o ns.o passport.o sb.o tables.o
    1313
    1414CFLAGS += -Wall
  • protocols/msn/msn.c

    r2288705 r1c3008a  
    7878        {
    7979                while( md->filetransfers ) {
    80                         imcb_file_canceled( md->filetransfers->data, "Closing msn connection" );
     80                        imcb_file_canceled( md->filetransfers->data, "Closing connection" );
    8181                }
    8282               
  • protocols/msn/sb.c

    r2288705 r1c3008a  
    174174                        buf = g_new0( char, i );
    175175                        i = g_snprintf( buf, i, MSN_TYPING_HEADERS, sb->ic->acc->user );
    176                 } else if( strncmp( text, MSN_INVITE_HEADERS, sizeof( MSN_INVITE_HEADERS ) - 1 ) == 0 )
     176                }
     177                else if( strncmp( text, MSN_INVITE_HEADERS, sizeof( MSN_INVITE_HEADERS ) - 1 ) == 0 )
    177178                {
    178179                        buf = g_strdup( text );
    179180                        i = strlen( buf );
    180                 } else
     181                }
     182                else
    181183                {
    182184                        buf = g_new0( char, sizeof( MSN_MESSAGE_HEADERS ) + strlen( text ) * 2 + 1 );
Note: See TracChangeset for help on using the changeset viewer.