# HG changeset patch # User Richard Laager # Date 1134113189 0 # Node ID bfd3aca4647a827e3414065b5d6ed95b247ad24e # Parent 97167ff8668364315084381c03b4ef3dac5e7775 [gaim-migrate @ 14747] Fix a warning grim noticed. committer: Tailor Script diff -r 97167ff86683 -r bfd3aca4647a src/proxy.c --- a/src/proxy.c Fri Dec 09 06:43:51 2005 +0000 +++ b/src/proxy.c Fri Dec 09 07:26:29 2005 +0000 @@ -1084,7 +1084,7 @@ /* Read the contents */ p = g_strrstr(inputline, "Content-Length: "); - if(p>0) { + if(p != NULL) { gchar *tmp; int len = 0; char tmpc;