diff options
Diffstat (limited to 'protocols/msn/soap.c')
-rw-r--r-- | protocols/msn/soap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/protocols/msn/soap.c b/protocols/msn/soap.c index dac46a75..cbc384be 100644 --- a/protocols/msn/soap.c +++ b/protocols/msn/soap.c @@ -215,7 +215,7 @@ static void msn_soap_debug_print( const char *headers, const char *payload ) return; if( ( s = strstr( headers, "\r\n\r\n" ) ) ) - st = write( 1, s, s - headers + 4 ); + st = write( 1, headers, s - headers + 4 ); else st = write( 1, headers, strlen( headers ) ); |