summaryrefslogtreecommitdiffstats
path: root/commands.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-07-26 10:13:38 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-07-26 10:13:38 +0000
commite07be66eb4acaf37a27554cb491f1a05a6aa67a4 (patch)
tree5bd410d11b0119f24e1a458c1f94f8129dbb863a /commands.c
parent728abbcd7ecf14efe54144270537120d8ef8e826 (diff)
Fix a missing #ifdef. From Matt Armstrong <matt@lickey.com>.
Diffstat (limited to 'commands.c')
-rw-r--r--commands.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/commands.c b/commands.c
index a204ea02..823e166e 100644
--- a/commands.c
+++ b/commands.c
@@ -139,8 +139,10 @@ int mutt_display_message (HEADER *cur)
{
pager_t info;
+#ifdef _PGPPATH
if (cur->pgp & PGPGOODSIGN)
mutt_message _("PGP signature successfully verified.");
+#endif
/* Invoke the builtin pager */
memset (&info, 0, sizeof (pager_t));