X-Git-Url: http://gitweb.hugovil.com/?a=blobdiff_plain;f=src%2Fpop3.c;h=eed0f09c2c7bc29ff0d8a3765091161af00a5e86;hb=fef3094bcfb4fae0b7409bb5270ec260b1c6ddee;hp=268647cd2eff4a3df220ced18e6349c5d200f291;hpb=b309ccfdfd4593f3aecbdf1dafaed2f2c9d4a779;p=dockapps%2Fwmnotify.git diff --git a/src/pop3.c b/src/pop3.c index 268647c..eed0f09 100644 --- a/src/pop3.c +++ b/src/pop3.c @@ -51,7 +51,7 @@ POP3_ReceiveResponse( void ) /* Check the status indicator returned by the POP3 server. There are currently two status indicators: positive ("+OK") and negative ("-ERR"). Servers MUST send the status indicators in upper case. */ - if( STREQ_LEN( rx_buffer, POP3_RSP_SUCCESS, strlen(POP3_RSP_SUCCESS) ) == FALSE ) { + if( STREQ_LEN( rx_buffer, POP3_RSP_SUCCESS, strlen(POP3_RSP_SUCCESS) ) == false ) { fprintf( stderr, "%s: Error, POP3 server responded:\n \"%s\"\n", PACKAGE, rx_buffer ); len = -1; }