diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-10-13 03:35:47 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-10-13 03:35:47 +0000 |
commit | b55008ba4fd7ec250fb4e2aabdc3d6fe17cf524b (patch) | |
tree | c068f224bbfb324132af2cc2ef43ef986c522ad7 /mail/mh/files/patch-ag | |
parent | The 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-ag | 12 |
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') |