blob: 4e32011591de1598bf5159ffc52fb051a3fd6d6f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
http://dev.mutt.org/trac/changeset/5908%3A7f37d0a57d83?format=diff&new=5908:7f37d0a57d83
Display unsigned part of traditional PGP messages.
Unbreaks [e2780a423d96], closes #3269
Index: crypt-gpgme.c
===================================================================
--- crypt-gpgme.c (revision 5801:19e62bd1549b)
+++ crypt-gpgme.c (revision 5908:7f37d0a57d83)
@@ -2372,8 +2372,7 @@
}
}
-#if 0
else
{
- /* why would we want to display this at all? */
+ /* A traditional PGP part may mix signed and unsigned content */
/* XXX - we may wish to recode here */
if (s->prefix)
@@ -2381,5 +2380,4 @@
state_puts (buf, s);
}
-#endif
}
Index: pgp.c
===================================================================
--- pgp.c (revision 5827:776ef9dbe4d2)
+++ pgp.c (revision 5908:7f37d0a57d83)
@@ -483,8 +483,7 @@
}
}
-#if 0
else
{
- /* why would we want to display this at all? */
+ /* A traditional PGP part may mix signed and unsigned content */
/* XXX - we may wish to recode here */
if (s->prefix)
@@ -492,5 +491,4 @@
state_puts (buf, s);
}
-#endif
}
|