]> granicus.if.org Git - neomutt/commitdiff
fix gcc 4.6 warning -Wunused-but-set-variable in pgp.c
authorOlaf Hering <olaf@aepfle.de>
Mon, 23 May 2011 10:59:13 +0000 (12:59 +0200)
committerOlaf Hering <olaf@aepfle.de>
Mon, 23 May 2011 10:59:13 +0000 (12:59 +0200)
pgp.c: In function 'pgp_application_pgp_handler':
pgp.c:254:8: warning: variable 'start_pos' set but not used [-Wunused-but-set-variable]

Signed-off-by: Olaf Hering <olaf@aepfle.de>
pgp.c

diff --git a/pgp.c b/pgp.c
index bf3640a6d24a5afcab78b946eeefc85f90350709..506a078d1329d3da3d587025aaad26a51dfbd75b 100644 (file)
--- a/pgp.c
+++ b/pgp.c
@@ -251,7 +251,6 @@ int pgp_application_pgp_handler (BODY *m, STATE *s)
   int needpass = -1, pgp_keyblock = 0;
   int clearsign = 0, rv, rc;
   int c = 1; /* silence GCC warning */
-  long start_pos = 0;
   long bytes;
   LOFF_T last_pos, offset;
   char buf[HUGE_STRING];
@@ -285,7 +284,6 @@ int pgp_application_pgp_handler (BODY *m, STATE *s)
     if (mutt_strncmp ("-----BEGIN PGP ", buf, 15) == 0)
     {
       clearsign = 0;
-      start_pos = last_pos;
 
       if (mutt_strcmp ("MESSAGE-----\n", buf + 15) == 0)
         needpass = 1;