From feeb4b4c90e8174e585035d17433f96700074253 Mon Sep 17 00:00:00 2001 From: Michael Elkins Date: Tue, 18 May 2010 08:39:48 -0700 Subject: [PATCH] Consider any negative return value from send_message() to be an error and allow the user to resend. Closes #3411. --- send.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/send.c b/send.c index b38d3996e..94cc93e81 100644 --- a/send.c +++ b/send.c @@ -1766,7 +1766,7 @@ full_fcc: * the send failed as well so we give the user a chance to fix the * error. */ - if (fcc_error || (i = send_message (msg)) == -1) + if (fcc_error || (i = send_message (msg)) < 0) { if (!(flags & SENDBATCH)) { -- 2.40.0