View | Details | Raw Unified | Return to bug 85465
Collapse All | Expand All

(-)./distinfo (-2 / +2 lines)
Lines 6-13 Link Here
6
SIZE (mutt/patch-1.5.10.vvv.nntp.gz) = 98153
6
SIZE (mutt/patch-1.5.10.vvv.nntp.gz) = 98153
7
MD5 (mutt/patch-1.5.10.vvv.initials.gz) = 91eea7344625830bf4231dc1d56cb799
7
MD5 (mutt/patch-1.5.10.vvv.initials.gz) = 91eea7344625830bf4231dc1d56cb799
8
SIZE (mutt/patch-1.5.10.vvv.initials.gz) = 682
8
SIZE (mutt/patch-1.5.10.vvv.initials.gz) = 682
9
MD5 (mutt/patch-1.5.10.vvv.quote.gz) = 7d9b9c2d52318782d81d2ffb95576d48
9
MD5 (mutt/patch-1.5.10.vvv.quote.gz) = a447f9362a9ef37c8fdc58efa73ed326
10
SIZE (mutt/patch-1.5.10.vvv.quote.gz) = 1580
10
SIZE (mutt/patch-1.5.10.vvv.quote.gz) = 1963
11
MD5 (mutt/patch-1.5.4.cd.ifdef.1) = a545036cdb55519154d0b35465f52daa
11
MD5 (mutt/patch-1.5.4.cd.ifdef.1) = a545036cdb55519154d0b35465f52daa
12
SIZE (mutt/patch-1.5.4.cd.ifdef.1) = 3545
12
SIZE (mutt/patch-1.5.4.cd.ifdef.1) = 3545
13
MD5 (mutt/p0-patch-1.5.6.dw.mbox-hook.1) = 9e29a6778ab07a4de3442691e4573fea
13
MD5 (mutt/p0-patch-1.5.6.dw.mbox-hook.1) = 9e29a6778ab07a4de3442691e4573fea
(-)./files/patch-pgp.c (+27 lines)
Line 0 Link Here
1
--- pgp.c.orig	Thu Aug 11 23:22:41 2005
2
+++ pgp.c	Thu Aug 25 08:01:22 2005
3
@@ -381,16 +381,21 @@
4
 	}
5
 	
6
         /* treat empty result as sign of failure */
7
-	rewind (pgpout);
8
-        if ((c = fgetc (pgpout)) == EOF)
9
+	if (pgpout)
10
+	{
11
+	  rewind (pgpout);
12
+	  c = fgetc (pgpout);
13
+	  ungetc (c, pgpout);
14
+	}
15
+        if (!clearsign && (!pgpout || c == EOF))
16
 	{
17
           mutt_error _("Could not decrypt PGP message");
18
+	  mutt_sleep (1);
19
           pgp_void_passphrase ();
20
           rc = -1;
21
           
22
           goto out;
23
         }
24
-	ungetc (c, pgpout);
25
       }
26
       
27
       /*

Return to bug 85465