summaryrefslogtreecommitdiffstats
path: root/hdrline.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-06-08 09:28:16 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-06-08 09:28:16 +0000
commitc53abe40f5e1efc4272262a9ee5689577897d045 (patch)
treeff03b496efa54cdabf53663e655aff5fd27e40db /hdrline.c
parentc9b1eb66b8f4263b780f0e60f04e7cacaee1914b (diff)
- Add a $weed option.
- Add out-of-band reporting of signature status.
Diffstat (limited to 'hdrline.c')
-rw-r--r--hdrline.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/hdrline.c b/hdrline.c
index 85600e07..da202e36 100644
--- a/hdrline.c
+++ b/hdrline.c
@@ -601,10 +601,12 @@ hdr_format_str (char *dest,
ch = ' ';
#ifdef _PGPPATH
- if (hdr->pgp & PGPENCRYPT)
+ if (hdr->pgp & PGPGOODSIGN)
+ ch = 'S';
+ else if (hdr->pgp & PGPENCRYPT)
ch = 'P';
else if (hdr->pgp & PGPSIGN)
- ch = 'S';
+ ch = 's';
else if (hdr->pgp & PGPKEY)
ch = 'K';
#endif