diff options
Diffstat (limited to 'mail-client/nmh/files/nmh-1.1-m_getfld.patch')
-rw-r--r-- | mail-client/nmh/files/nmh-1.1-m_getfld.patch | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/mail-client/nmh/files/nmh-1.1-m_getfld.patch b/mail-client/nmh/files/nmh-1.1-m_getfld.patch deleted file mode 100644 index 546274709b9b..000000000000 --- a/mail-client/nmh/files/nmh-1.1-m_getfld.patch +++ /dev/null @@ -1,27 +0,0 @@ ---- sbr/m_getfld.orig.c 2004-07-25 13:18:04.570397179 -0700 -+++ sbr/m_getfld.c 2004-07-25 13:25:36.471839770 -0700 -@@ -730,18 +730,18 @@ - register char *ep = pat + patln; - register char pc = *pat++; - -- for(;;) { -- while (pc != *str++) -- if (str > es) -- return 0; -+ for(;str <= es; str++) { -+ if (pc != *str) -+ continue; - if (str > es+1) - return 0; -- sp = str; pp = pat; -+ sp = str+1; pp = pat; - while (pp < ep && *sp++ == *pp) - pp++; - if (pp >= ep) -- return ((unsigned char *)--str); -+ return ((unsigned char *)str); - } -+ return 0; - } - - |