summaryrefslogtreecommitdiff
path: root/mail/mh/files/patch-ag
diff options
context:
space:
mode:
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')