summaryrefslogtreecommitdiff
path: root/mail/mh/files/patch-ag
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>2002-10-13 03:35:47 +0000
committerKris Kennaway <kris@FreeBSD.org>2002-10-13 03:35:47 +0000
commitb55008ba4fd7ec250fb4e2aabdc3d6fe17cf524b (patch)
treec068f224bbfb324132af2cc2ef43ef986c522ad7 /mail/mh/files/patch-ag
parentThe pine port was marked FORBIDDEN for security reasons 2 years ago. (diff)
The mh port was marked FORBIDDEN for security reasons 2 years and 7 months
ago. Remove it.
Notes
Notes: svn path=/head/; revision=67929
Diffstat (limited to 'mail/mh/files/patch-ag')
-rw-r--r--mail/mh/files/patch-ag12
1 files changed, 0 insertions, 12 deletions
diff --git a/mail/mh/files/patch-ag b/mail/mh/files/patch-ag
deleted file mode 100644
index 519cd0ebbc28..000000000000
--- a/mail/mh/files/patch-ag
+++ /dev/null
@@ -1,12 +0,0 @@
---- sbr/m_atoi.c.orig Wed Dec 1 13:01:23 1993
-+++ sbr/m_atoi.c Tue Jan 7 18:53:15 1997
-@@ -19,6 +19,9 @@
- i *= 10;
- i += *cp++ - '0';
- }
-+ if (*cp) { /* non-digit ended string -- return 0. */
-+ return 0;
-+ }
- #else
- while (*cp) {
- if (*cp < '0' || *cp > '9')