From: guns Date: Mon, 31 Dec 2012 23:03:11 +0000 (-0800) Subject: Fix accidental var redeclation with --enable-exact-address X-Git-Tag: neomutt-20160307~193 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c1469586290c4f6d3e295809f6ba16f499bfbdb9;p=neomutt Fix accidental var redeclation with --enable-exact-address closes #3615 --- diff --git a/rfc822.c b/rfc822.c index f437d72d8..70839dc41 100644 --- a/rfc822.c +++ b/rfc822.c @@ -371,7 +371,7 @@ ADDRESS *rfc822_parse_adrlist (ADDRESS *top, const char *s) { int ws_pending, nl; #ifdef EXACT_ADDRESS - const char *begin, *ps; + const char *begin; #endif const char *ps; char comment[LONG_STRING], phrase[LONG_STRING];