Changeset ff1616b


Ignore:
Timestamp:
2011-11-09T00:07:22Z (12 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
dac74bd
Parents:
de26f3c
Message:

Fixed bug in msn_soap_debug_print() failing to print HTTP headers of SOAP
queries. No, this doesn't fix #850, I just found this bug while trying to
get debugging info for that.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/msn/soap.c

    rde26f3c rff1616b  
    216216       
    217217        if( ( s = strstr( headers, "\r\n\r\n" ) ) )
    218                 st = write( 1, s, s - headers + 4 );
     218                st = write( 1, headers, s - headers + 4 );
    219219        else
    220220                st = write( 1, headers, strlen( headers ) );
Note: See TracChangeset for help on using the changeset viewer.