Ignore:
Timestamp:
2011-12-06T21:50:43Z (12 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
aee8c19
Parents:
df98ee8 (diff), d7edadf (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 compiler warning fixes from vmiklos.

This change also uncovered one bug in groupchat handling in OSCAR, which
I fixed during the merge.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/soap.c

    rdf98ee8 rb041b52  
    210210{
    211211        char *s;
    212         int st;
    213212       
    214213        if( !getenv( "BITLBEE_DEBUG" ) )
     
    218217        {
    219218                if( ( s = strstr( headers, "\r\n\r\n" ) ) )
    220                         st = write( 2, headers, s - headers + 4 );
     219                        write( 2, headers, s - headers + 4 );
    221220                else
    222                         st = write( 2, headers, strlen( headers ) );
     221                        write( 2, headers, strlen( headers ) );
    223222        }
    224223       
Note: See TracChangeset for help on using the changeset viewer.