summaryrefslogtreecommitdiffstats
path: root/compose.c
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1998-10-02 09:40:50 +0000
committerThomas Roessler <roessler@does-not-exist.org>1998-10-02 09:40:50 +0000
commit14018f65c9614b28614dbc7b1c740aa83f02b740 (patch)
treedfce510d17ed42c0fc19e9d576004fd33b1f8fd4 /compose.c
parent6007032453d4c6c42a95fb5501f304df2eca208d (diff)
More () fixes.
Diffstat (limited to 'compose.c')
-rw-r--r--compose.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/compose.c b/compose.c
index 24a163d9..21a829c2 100644
--- a/compose.c
+++ b/compose.c
@@ -264,13 +264,13 @@ static void draw_envelope (HEADER *msg, char *fcc)
#ifdef _PGPPATH
mvaddstr (HDR_PGP, 0, " PGP: ");
if ((msg->pgp & (PGPENCRYPT | PGPSIGN)) == (PGPENCRYPT | PGPSIGN))
- addstr _("Sign, Encrypt");
+ addstr (_("Sign, Encrypt"));
else if (msg->pgp & PGPENCRYPT)
- addstr _("Encrypt");
+ addstr (_("Encrypt"));
else if (msg->pgp & PGPSIGN)
- addstr _("Sign");
+ addstr (_("Sign"));
else
- addstr _("Clear");
+ addstr (_("Clear"));
clrtoeol ();
if (msg->pgp & PGPSIGN)