diff options
author | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-12-09 03:07:36 +0000 |
---|---|---|
committer | David W. Chapman Jr. <dwcjr@FreeBSD.org> | 2001-12-09 03:07:36 +0000 |
commit | 73358a5ab027ea1b2796bce8b58ff4853d24bea2 (patch) | |
tree | 284bc177e624759432b1961a3b2cdeafce399ef1 /security/cyrus-sasl | |
parent | aed2ed825ec9bcc7053deaefd48c240e2a39d5ab (diff) |
Notes
Diffstat (limited to 'security/cyrus-sasl')
-rw-r--r-- | security/cyrus-sasl/Makefile | 7 | ||||
-rw-r--r-- | security/cyrus-sasl/files/patch-lib::common.c | 11 |
2 files changed, 14 insertions, 4 deletions
diff --git a/security/cyrus-sasl/Makefile b/security/cyrus-sasl/Makefile index 170a2b96c69f..6ac56b2108a0 100644 --- a/security/cyrus-sasl/Makefile +++ b/security/cyrus-sasl/Makefile @@ -7,12 +7,11 @@ PORTNAME= cyrus-sasl PORTVERSION= 1.5.24 -PORTREVISION= 7 +PORTREVISION= 8 CATEGORIES= security -MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/ \ - ${MASTER_SITE_LOCAL} \ +MASTER_SITES= ftp://ftp.andrew.cmu.edu/pub/cyrus-mail/%SUBDIR% \ ftp://ftp.hanse.de/sites/transit/mirror/ftp.andrew.cmu.edu/pub/cyrus-mail/ -MASTER_SITE_SUBDIR= stb/mirror/ftp.andrew.cmu.edu/pub/cyrus-mail +MASTER_SITE_SUBDIR= ./ OLD-VERSIONS/sasl/ PATCH_SITES= http://www.imasy.or.jp/~ume/ipv6/ PATCHFILES= ${DISTNAME}-ipv6-20010321.diff.gz diff --git a/security/cyrus-sasl/files/patch-lib::common.c b/security/cyrus-sasl/files/patch-lib::common.c new file mode 100644 index 000000000000..1bc58a81c3d6 --- /dev/null +++ b/security/cyrus-sasl/files/patch-lib::common.c @@ -0,0 +1,11 @@ +--- lib/common.c.orig Thu Dec 6 18:34:09 2001 ++++ lib/common.c Thu Dec 6 18:34:24 2001 +@@ -596,7 +596,7 @@ + } + + /* do the syslog call. do not need to call openlog */ +- syslog(syslog_priority | LOG_AUTH, message); ++ syslog(syslog_priority | LOG_AUTH, "%s", message); + + return SASL_OK; + } |