diff options
author | schmonz <schmonz@pkgsrc.org> | 2005-01-08 00:15:28 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2005-01-08 00:15:28 +0000 |
commit | 777f20508fe003f3514d9e0777098fc5b82170a4 (patch) | |
tree | c78f6a86eb2b5e6ee3aaa2bb57e4d022f4a8947e /mail/ezmlm-idx/patches | |
parent | 198d0b81b01b74d79b84ce7bd2a41a08465ee755 (diff) | |
download | pkgsrc-777f20508fe003f3514d9e0777098fc5b82170a4.tar.gz |
Incorporate patches from Bruce Guenter to fix ezmlm-send argument
construction in ezmlm-confirm, ezmlm-store, and ezmlm-moderate.
Will be in the next release.
Bump PKGREVISION.
Diffstat (limited to 'mail/ezmlm-idx/patches')
-rw-r--r-- | mail/ezmlm-idx/patches/patch-ab | 4 | ||||
-rw-r--r-- | mail/ezmlm-idx/patches/patch-ac | 13 | ||||
-rw-r--r-- | mail/ezmlm-idx/patches/patch-ad | 13 | ||||
-rw-r--r-- | mail/ezmlm-idx/patches/patch-ae | 13 |
4 files changed, 41 insertions, 2 deletions
diff --git a/mail/ezmlm-idx/patches/patch-ab b/mail/ezmlm-idx/patches/patch-ab index 57e9a4f77cf..cb309ea2114 100644 --- a/mail/ezmlm-idx/patches/patch-ab +++ b/mail/ezmlm-idx/patches/patch-ab @@ -1,6 +1,6 @@ -$NetBSD: patch-ab,v 1.3 2004/12/29 22:13:56 schmonz Exp $ +$NetBSD: patch-ab,v 1.4 2005/01/08 00:15:28 schmonz Exp $ ---- BIN.orig 2004-12-29 17:06:27.000000000 -0500 +--- BIN.orig 2005-01-07 18:53:00.000000000 -0500 +++ BIN @@ -22,9 +22,6 @@ c:::755:/:ezmlm-split: c:::755:/:ezmlm-moderate: diff --git a/mail/ezmlm-idx/patches/patch-ac b/mail/ezmlm-idx/patches/patch-ac new file mode 100644 index 00000000000..f8c8dfe2d1f --- /dev/null +++ b/mail/ezmlm-idx/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.3 2005/01/08 00:15:28 schmonz Exp $ + +--- ezmlm-confirm.c.orig 2004-12-17 11:56:36.000000000 -0500 ++++ ezmlm-confirm.c +@@ -138,7 +138,7 @@ void main(int argc, char **argv) + sig_pipeignore(); + when = now(); + +- if (!stralloc_copys(&sendopt," -")) die_nomem(); ++ if (!stralloc_copys(&sendopt,"-")) die_nomem(); + while ((opt = getopt(argc,argv,"cCmMrRt:T:vV")) != opteof) + switch(opt) { /* pass on ezmlm-send options */ + case 'c': /* ezmlm-send flags */ diff --git a/mail/ezmlm-idx/patches/patch-ad b/mail/ezmlm-idx/patches/patch-ad new file mode 100644 index 00000000000..0847c6ac5ab --- /dev/null +++ b/mail/ezmlm-idx/patches/patch-ad @@ -0,0 +1,13 @@ +$NetBSD: patch-ad,v 1.1 2005/01/08 00:15:28 schmonz Exp $ + +--- ezmlm-moderate.c.orig 2004-12-23 19:06:13.000000000 -0500 ++++ ezmlm-moderate.c +@@ -204,7 +204,7 @@ char **argv; + sig_pipeignore(); + when = now(); + +- if (!stralloc_copys(&sendopt," -")) die_nomem(); ++ if (!stralloc_copys(&sendopt,"-")) die_nomem(); + while ((opt = getopt(argc,argv,"cCmMrRt:T:vV")) != opteof) + switch(opt) { /* pass on ezmlm-send options */ + case 'c': /* ezmlm-send flags */ diff --git a/mail/ezmlm-idx/patches/patch-ae b/mail/ezmlm-idx/patches/patch-ae new file mode 100644 index 00000000000..f0ec47b422c --- /dev/null +++ b/mail/ezmlm-idx/patches/patch-ae @@ -0,0 +1,13 @@ +$NetBSD: patch-ae,v 1.1 2005/01/08 00:15:28 schmonz Exp $ + +--- ezmlm-store.c.orig 2004-12-23 19:06:13.000000000 -0500 ++++ ezmlm-store.c +@@ -154,7 +154,7 @@ char **argv; + (void) umask(022); + sig_pipeignore(); + +- if (!stralloc_copys(&sendopt," -")) die_nomem(); ++ if (!stralloc_copys(&sendopt,"-")) die_nomem(); + while ((opt = getopt(argc,argv,"bBcCmMpPrRsSvVyY")) != opteof) + switch(opt) { + case 'b': flagbody = 1; break; |