Browse Source

modifying package: fetchmail-6.2.4 20030814 -> 20031008

master
parent
commit
3387c6e684
  1. 20
      fetchmail/fetchmail.patch
  2. 5
      fetchmail/fetchmail.spec

20
fetchmail/fetchmail.patch

@ -0,0 +1,20 @@
--- rfc822.c.orig Thu Jul 17 03:03:20 2003
+++ rfc822.c Tue Sep 23 11:23:05 2003
@@ -176,7 +176,7 @@
case 3: /* we're in a <>-enclosed address */
if (*from == '@' || *from == '!')
has_host_part = TRUE;
- else if (*from == '>' && from[-1] != '<')
+ else if (*from == '>' && (from > buf && from[-1] != '<'))
{
state = 1;
if (!has_host_part)
@@ -198,7 +198,7 @@
/*
* If we passed a comma, reset everything.
*/
- if (from[-1] == ',' && !parendepth) {
+ if ((from > buf && from[-1] == ',') && !parendepth) {
has_host_part = has_bare_name_part = FALSE;
parens_from = NULL;
}

5
fetchmail/fetchmail.spec

@ -33,10 +33,11 @@ Distribution: OpenPKG [BASE]
Group: Mail
License: GPL
Version: 6.2.4
Release: 20030814
Release: 20031008
# list of sources
Source0: http://www.catb.org/~esr/fetchmail/fetchmail-%{version}.tar.gz
Patch0: fetchmail.patch
# build information
Prefix: %{l_prefix}
@ -58,6 +59,8 @@ AutoReqProv: no
%prep
%setup -q
%patch -p0
# don't outguess configure parameters
%{l_shtool} subst \
-e 's;test -r $with_ssl/include/openssl/ssl.h;false;' \

Loading…
Cancel
Save