diff options
author | Trevor Johnson <trevor@FreeBSD.org> | 2003-10-06 18:12:05 +0000 |
---|---|---|
committer | Trevor Johnson <trevor@FreeBSD.org> | 2003-10-06 18:12:05 +0000 |
commit | 0d8495116cd1fde36d4dbe78e37cdabc2d12a5cd (patch) | |
tree | 74e2df4c8ca2b234c9d192f8d272d2cb322aa88e /mail | |
parent | b2e53d26ec4bc76014059f37a2b56d5122829d4d (diff) | |
download | ports-0d8495116cd1fde36d4dbe78e37cdabc2d12a5cd.tar.gz ports-0d8495116cd1fde36d4dbe78e37cdabc2d12a5cd.zip |
Notes
Diffstat (limited to 'mail')
-rw-r--r-- | mail/milter-regex/Makefile | 2 | ||||
-rw-r--r-- | mail/milter-regex/distinfo | 2 | ||||
-rw-r--r-- | mail/milter-regex/files/patch-milter-regex.c | 32 |
3 files changed, 2 insertions, 34 deletions
diff --git a/mail/milter-regex/Makefile b/mail/milter-regex/Makefile index 8fb1a1e6fa60..79bd5baf8943 100644 --- a/mail/milter-regex/Makefile +++ b/mail/milter-regex/Makefile @@ -7,7 +7,7 @@ # PORTNAME= milter_regex -PORTVERSION= 0.5 +PORTVERSION= 0.6 CATEGORIES= mail MASTER_SITES= http://www.benzedrine.cx/ DISTNAME= milter-regex-${PORTVERSION} diff --git a/mail/milter-regex/distinfo b/mail/milter-regex/distinfo index 0662876cc3e0..b110ced26897 100644 --- a/mail/milter-regex/distinfo +++ b/mail/milter-regex/distinfo @@ -1 +1 @@ -MD5 (milter-regex-0.5.tar.gz) = 58a53f79d2d09dfd0a9f895103f780af +MD5 (milter-regex-0.6.tar.gz) = 1f65e2a14e791af2a8395ce81081400d diff --git a/mail/milter-regex/files/patch-milter-regex.c b/mail/milter-regex/files/patch-milter-regex.c deleted file mode 100644 index dbb2106e0e8c..000000000000 --- a/mail/milter-regex/files/patch-milter-regex.c +++ /dev/null @@ -1,32 +0,0 @@ -$FreeBSD$ - -We lack OpenBSD's re-entrant logging functions. - ---- milter-regex.c.orig Sat Sep 27 16:58:48 2003 -+++ milter-regex.c Fri Oct 3 23:11:00 2003 -@@ -54,7 +54,6 @@ - static const char *rule_file_name = "/etc/milter-regex.conf"; - static struct ruleset ruleset; - static int debug = 0; --static struct syslog_data sdata = SYSLOG_DATA_INIT; - - static sfsistat cb_connect(SMFICTX *ctx, char *name, _SOCK_ADDR *sa); - static sfsistat cb_helo(SMFICTX *ctx, char *arg); -@@ -378,7 +377,7 @@ - if (vasprintf(&msg, fmt, ap) != -1) { - if (debug) - printf("%s\n", msg); -- syslog_r(priority, &sdata, "%s", msg); -+ syslog(priority, "%s", msg); - free(msg); - } - va_end(ap); -@@ -411,7 +413,7 @@ - sfsistat r = MI_FAILURE; - - tzset(); -- openlog_r("milter-regex", LOG_PID | LOG_NDELAY, LOG_DAEMON, &sdata); -+ openlog("milter-regex", LOG_PID | LOG_NDELAY, LOG_DAEMON); - - while ((ch = getopt(argc, argv, "dc:p:")) != -1) { - switch (ch) { |