diff options
author | garga <garga@FreeBSD.org> | 2006-02-17 05:41:43 +0800 |
---|---|---|
committer | garga <garga@FreeBSD.org> | 2006-02-17 05:41:43 +0800 |
commit | b306262049572f98869d768d281c257ff097bea0 (patch) | |
tree | 80be79c6da4c1e533fe4df06fe0f80bcd9229226 /mail | |
parent | 51db66aadcedfd0572eaef4451eca1db58baa8df (diff) | |
download | freebsd-ports-gnome-b306262049572f98869d768d281c257ff097bea0.tar.gz freebsd-ports-gnome-b306262049572f98869d768d281c257ff097bea0.tar.zst freebsd-ports-gnome-b306262049572f98869d768d281c257ff097bea0.zip |
- Fix the "sign as" function for SMIME
- Bump PORTREVISION
PR: ports/93421
Submitted by: maintainer
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mutt-devel/Makefile | 1 | ||||
-rw-r--r-- | mail/mutt-devel/files/patch-smime.c | 10 |
2 files changed, 11 insertions, 0 deletions
diff --git a/mail/mutt-devel/Makefile b/mail/mutt-devel/Makefile index 899f4a6b80fc..cc37bd5a2500 100644 --- a/mail/mutt-devel/Makefile +++ b/mail/mutt-devel/Makefile @@ -98,6 +98,7 @@ PORTNAME= mutt-devel PORTVERSION= 1.5.11 +PORTREVISION= 1 CATEGORIES+= mail ipv6 .if defined(WITH_MUTT_NNTP) CATEGORIES+= news diff --git a/mail/mutt-devel/files/patch-smime.c b/mail/mutt-devel/files/patch-smime.c new file mode 100644 index 000000000000..ffd679b26069 --- /dev/null +++ b/mail/mutt-devel/files/patch-smime.c @@ -0,0 +1,10 @@ +--- smime.c.orig Sun Aug 14 14:33:37 2005 ++++ smime.c Thu Feb 16 08:49:37 2006 +@@ -1989,7 +1989,6 @@ + + if ((p = smime_ask_for_key (_("Sign as: "), NULL, 0))) + { +- p[mutt_strlen (p)-1] = '\0'; + mutt_str_replace (&SmimeDefaultKey, p); + + msg->security |= SIGN; |