]> granicus.if.org Git - neomutt/commitdiff
Fix a compiler warning
authorBrendan Cully <brendan@kublai.com>
Tue, 10 Apr 2007 20:53:51 +0000 (13:53 -0700)
committerBrendan Cully <brendan@kublai.com>
Tue, 10 Apr 2007 20:53:51 +0000 (13:53 -0700)
ChangeLog
main.c

index 5215853461be1d50d8ce7ac9f926ffb7b096e213..2c43d7bb10737ae904f4b21a12acb5bc05f24cd7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-04-10 13:46 -0700  Brendan Cully  <brendan@kublai.com>  (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ř  <petr.pisar@atlas.cz>  (af01580c9a08)
 
        * po/cs.po: Updated Czech translation
diff --git a/main.c b/main.c
index e84ac8003eac2d6cca21d0376a5562ee59f05318..be3961c8bad0a95fdd2143e056792c91c940f08d 100644 (file)
--- 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);