aboutsummaryrefslogtreecommitdiff
path: root/mail
diff options
context:
space:
mode:
authorSheldon Hearn <sheldonh@FreeBSD.org>2001-12-20 15:29:51 +0000
committerSheldon Hearn <sheldonh@FreeBSD.org>2001-12-20 15:29:51 +0000
commite019e56ef46607221fbe54e42bb881b20382ef5e (patch)
tree45f74abe6ef8bcaea68320b0e3a632f53093b401 /mail
parente996e3d82270fa58083c07a2f7ce39893c701dad (diff)
downloadports-e019e56ef46607221fbe54e42bb881b20382ef5e.tar.gz
ports-e019e56ef46607221fbe54e42bb881b20382ef5e.zip
Notes
Diffstat (limited to 'mail')
-rw-r--r--mail/exim-devel/Makefile2
-rw-r--r--mail/exim-devel/files/patch-src::readconf.c10
2 files changed, 10 insertions, 2 deletions
diff --git a/mail/exim-devel/Makefile b/mail/exim-devel/Makefile
index bc8450d63817..3c1c909cd7dc 100644
--- a/mail/exim-devel/Makefile
+++ b/mail/exim-devel/Makefile
@@ -15,8 +15,6 @@ DISTFILES= exim-3.951.tar.bz2 exim-texinfo-3.951.tar.bz2
MAINTAINER= sheldonh@FreeBSD.org
-BROKEN= 'Default configuration file gives unknown named list "+local_domains"'
-
NO_LATEST_LINK= yes
USE_BZIP2= yes
diff --git a/mail/exim-devel/files/patch-src::readconf.c b/mail/exim-devel/files/patch-src::readconf.c
new file mode 100644
index 000000000000..0f6839f91ec6
--- /dev/null
+++ b/mail/exim-devel/files/patch-src::readconf.c
@@ -0,0 +1,10 @@
+--- src/readconf.c.orig Fri Nov 23 17:31:21 2001
++++ src/readconf.c Thu Dec 20 17:24:58 2001
+@@ -1990,6 +1990,7 @@
+ while (isalnum(*s) || *s == '_') s++;
+ t = store_get(sizeof(tree_node) + s-ss);
+ Ustrncpy(t->name, ss, s-ss);
++t->name[s-ss] = 0;
+ while (isspace(*s)) s++;
+
+ if (!tree_insertnode(anchorp, t))