# HG changeset patch # User Mark Doliner # Date 1229594758 0 # Node ID 222265ec3044a2d24e82724c05831387598c5bf5 # Parent 484ce20cd6cc733c21a4f092f2cbf01689a78350 I'm guessing this is what was intended here? Fixes this warning: soap.c: In function ¡Æmsn_soap_read_cb¡Ç: soap.c:524: warning: suggest parentheses around && within || diff -r 484ce20cd6cc -r 222265ec3044 libpurple/protocols/msn/soap.c --- a/libpurple/protocols/msn/soap.c Thu Dec 18 10:01:10 2008 +0000 +++ b/libpurple/protocols/msn/soap.c Thu Dec 18 10:05:58 2008 +0000 @@ -521,7 +521,7 @@ /* msn_soap_process could alter errno */ msn_soap_process(conn); - if (cnt < 0 && perrno != EAGAIN || cnt == 0) { + if ((cnt < 0 && perrno != EAGAIN) || cnt == 0) { /* It's possible msn_soap_process closed the ssl connection */ if (conn->ssl) { purple_ssl_close(conn->ssl);