diff options
author | jkoshy <jkoshy@FreeBSD.org> | 2004-04-17 10:23:50 +0800 |
---|---|---|
committer | jkoshy <jkoshy@FreeBSD.org> | 2004-04-17 10:23:50 +0800 |
commit | 0163cef14803e12c48622bf30399288e97a46bfe (patch) | |
tree | 5204f7172dcd11f7503b612c4bf9ede087d757b9 /mail/nmh | |
parent | 3d24bcfbd4edaad7e836074e2e2c1fab9bf4ec2d (diff) | |
download | freebsd-ports-gnome-0163cef14803e12c48622bf30399288e97a46bfe.tar.gz freebsd-ports-gnome-0163cef14803e12c48622bf30399288e97a46bfe.tar.zst freebsd-ports-gnome-0163cef14803e12c48622bf30399288e97a46bfe.zip |
Fix a core dump in NMH's "sortm" command.
PR: 63497
Approved by: Scott Blachowicz <scott@sabami.seaslug.org> [MAINTAINER]
Diffstat (limited to 'mail/nmh')
-rw-r--r-- | mail/nmh/Makefile | 2 | ||||
-rw-r--r-- | mail/nmh/files/patch-ad | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/mail/nmh/Makefile b/mail/nmh/Makefile index 8fc0ed7e1d99..74283d1a0b49 100644 --- a/mail/nmh/Makefile +++ b/mail/nmh/Makefile @@ -53,7 +53,7 @@ PORTNAME= nmh PORTVERSION= 1.0.4 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= mail MASTER_SITES= ftp://ftp.mhost.com/pub/nmh/ \ ${MASTER_SITE_LOCAL} diff --git a/mail/nmh/files/patch-ad b/mail/nmh/files/patch-ad new file mode 100644 index 000000000000..79b3ee52e0cc --- /dev/null +++ b/mail/nmh/files/patch-ad @@ -0,0 +1,11 @@ +--- uip/sortm.c-- Thu Mar 18 00:12:19 2004 ++++ uip/sortm.c Thu Mar 18 00:26:50 2004 +@@ -439,8 +439,6 @@ + if(uprf(cp, "re:")) + cp += 2; + else { +- if (isalnum(c)) +- *cp2++ = isupper(c) ? tolower(c) : c; + break; + } + } |