Fix spool space check to account for SIZE. Bug 2552
[exim.git] / src / src / smtp_in.c
index 2c54a4ccfb1d7e1622f93862a4f40f5ea7e6ef51..1c02eb5c80bc40852df0736f9e4cc6564433f149 100644 (file)
@@ -4861,8 +4861,8 @@ while (done <= 0)
       and EXPN etc. to be used when space is short. */
 
       if (!receive_check_fs(
-          (smtp_check_spool_space && message_size >= 0)?
-             message_size + 5000 : 0))
+          smtp_check_spool_space && message_size >= 0
+             message_size + 5000 : 0))
        {
        smtp_printf("452 Space shortage, please try later\r\n", FALSE);
        sender_address = NULL;