Added <stdbool.h> for standard bool definitions
[dockapps/wmnotify.git] / src / pop3.c
index 268647c..eed0f09 100644 (file)
@@ -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;
   }