aboutsummaryrefslogtreecommitdiffstats
path: root/mail/exim/files
diff options
context:
space:
mode:
Diffstat (limited to 'mail/exim/files')
-rw-r--r--mail/exim/files/patch-src::host.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/mail/exim/files/patch-src::host.c b/mail/exim/files/patch-src::host.c
new file mode 100644
index 000000000000..b6e1e98e4207
--- /dev/null
+++ b/mail/exim/files/patch-src::host.c
@@ -0,0 +1,13 @@
+--- src/host.c.orig Mon May 12 15:39:19 2003
++++ src/host.c Fri Jun 20 14:54:12 2003
+@@ -817,8 +817,8 @@
+ int rc;
+ uschar *save = deliver_domain;
+ deliver_domain = h->name; /* set $domain */
+- rc = match_isinlist(string_copylc(h->name), &hosts_treat_as_local, 0, NULL,
+- NULL, MCL_DOMAIN, TRUE, NULL);
++ rc = match_isinlist(string_copylc(h->name), &hosts_treat_as_local, 0,
++ &domainlist_anchor, NULL, MCL_DOMAIN, TRUE, NULL);
+ deliver_domain = save;
+ if (rc == OK) goto FOUND_LOCAL;
+ }