From eaab6818a86be8250257874e4c3d7d1806299d8f Mon Sep 17 00:00:00 2001 From: Brendan Cully Date: Tue, 10 Apr 2007 13:53:51 -0700 Subject: [PATCH] Fix a compiler warning --- ChangeLog | 5 +++++ main.c | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 521585346..2c43d7bb1 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2007-04-10 13:46 -0700 Brendan Cully (d3e0d6c60d87) + + * rfc3676.c: Don't use $indent_string to quote replies to flowed + messages (closes #2874). + 2007-04-10 10:16 -0700 Petr Písař (af01580c9a08) * po/cs.po: Updated Czech translation diff --git a/main.c b/main.c index e84ac8003..be3961c8b 100644 --- a/main.c +++ b/main.c @@ -803,6 +803,7 @@ int main (int argc, char **argv) char buf[LONG_STRING]; char *tempfile = NULL, *infile = NULL; char *bodytext = NULL; + int rv = 0; if (!option (OPTNOCURSES)) mutt_flushinp (); @@ -924,7 +925,7 @@ int main (int argc, char **argv) mutt_free_list (&attach); } - int rv = ci_send_message (sendflags, msg, tempfile, NULL, NULL); + rv = ci_send_message (sendflags, msg, tempfile, NULL, NULL); if (!option (OPTNOCURSES)) mutt_endwin (NULL); -- 2.40.0