pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mail/exim/patches exim: remove patch from distinfo tha...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/1e7866de56c4
branches:  trunk
changeset: 452176:1e7866de56c4
user:      wiz <wiz%pkgsrc.org@localhost>
date:      Thu May 06 07:08:54 2021 +0000

description:
exim: remove patch from distinfo that was removed from repository during update

diffstat:

 mail/exim/patches/patch-src_store.c |  21 ---------------------
 1 files changed, 0 insertions(+), 21 deletions(-)

diffs (25 lines):

diff -r f81b098781b0 -r 1e7866de56c4 mail/exim/patches/patch-src_store.c
--- a/mail/exim/patches/patch-src_store.c       Thu May 06 06:53:16 2021 +0000
+++ /dev/null   Thu Jan 01 00:00:00 1970 +0000
@@ -1,21 +0,0 @@
-$NetBSD: patch-src_store.c,v 1.1 2020/08/20 16:40:57 gavan Exp $
-
---- src/store.c.orig   2020-05-30 20:35:38.000000000 +0000
-+++ src/store.c
-@@ -188,14 +188,14 @@ for (int pool = POOL_TAINT_BASE; pool < 
-   if ((b = current_block[pool]))
-     {
-     uschar * bc = US b + ALIGNED_SIZEOF_STOREBLOCK;
--    if (US p >= bc && US p <= bc + b->length) return TRUE;
-+    if (US p >= bc && US p < bc + b->length) return TRUE;
-     }
- 
- for (int pool = POOL_TAINT_BASE; pool < nelem(chainbase); pool++)
-   for (b = chainbase[pool]; b; b = b->next)
-     {
-     uschar * bc = US b + ALIGNED_SIZEOF_STOREBLOCK;
--    if (US p >= bc && US p <= bc + b->length) return TRUE;
-+    if (US p >= bc && US p < bc + b->length) return TRUE;
-     }
- return FALSE;
- }



Home | Main Index | Thread Index | Old Index