diff options
author | dwcjr <dwcjr@FreeBSD.org> | 2001-12-09 03:07:36 +0000 |
---|---|---|
committer | dwcjr <dwcjr@FreeBSD.org> | 2001-12-09 03:07:36 +0000 |
commit | 1e9b2721c0259922e7efa0573a2167b2286148cd (patch) | |
tree | 98fd1cba87ad9c5dd2fe1621ee0d2582d4bde9de | |
parent | d0fdd59ccc943ea69c4fda60aef8029439673e00 (diff) | |
download | FreeBSD-ports-1e9b2721c0259922e7efa0573a2167b2286148cd.zip FreeBSD-ports-1e9b2721c0259922e7efa0573a2167b2286148cd.tar.gz |
Fix formatting string bug
Remove old MASTER_SITE
PR: 32555
Submitted by: alx@cii.sumy.ua
Approved by: maintainer
-rw-r--r-- | security/cyrus-sasl/Makefile | 7 | ||||
-rw-r--r-- | security/cyrus-sasl/files/patch-lib::common.c | 11 | ||||
-rw-r--r-- | security/cyrus-sasl2/Makefile | 7 | ||||
-rw-r--r-- | security/cyrus-sasl2/files/patch-lib::common.c | 11 |
4 files changed, 28 insertions, 8 deletions
diff --git a/security/cyrus-sasl/Makefile b/security/cyrus-sasl/Makefile index 170a2b9..6ac56b2 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 0000000..1bc58a8 --- /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; + } diff --git a/security/cyrus-sasl2/Makefile b/security/cyrus-sasl2/Makefile index 170a2b9..6ac56b2 100644 --- a/security/cyrus-sasl2/Makefile +++ b/security/cyrus-sasl2/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-sasl2/files/patch-lib::common.c b/security/cyrus-sasl2/files/patch-lib::common.c new file mode 100644 index 0000000..1bc58a8 --- /dev/null +++ b/security/cyrus-sasl2/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; + } |