diff options
author | Munechika SUMIKAWA <sumikawa@FreeBSD.org> | 2005-05-10 04:16:21 +0000 |
---|---|---|
committer | Munechika SUMIKAWA <sumikawa@FreeBSD.org> | 2005-05-10 04:16:21 +0000 |
commit | d4cf1e1bbbbefd097c0ba849d5ccc5cd0484fcb7 (patch) | |
tree | 45fb5773f03f5d9e837e22d40a7b46d79c47d492 /security | |
parent | ba5aa452b8f3f65acd3ee09c7dc2801140f5a22f (diff) |
Notes
Diffstat (limited to 'security')
-rw-r--r-- | security/racoon/Makefile | 3 | ||||
-rw-r--r-- | security/racoon/distinfo | 4 | ||||
-rw-r--r-- | security/racoon/files/patch-crypto_openssl.c | 42 | ||||
-rw-r--r-- | security/racoon/files/patch-pfkey_dump.c | 20 |
4 files changed, 23 insertions, 46 deletions
diff --git a/security/racoon/Makefile b/security/racoon/Makefile index a68efae0f18e..97f9f1b3864a 100644 --- a/security/racoon/Makefile +++ b/security/racoon/Makefile @@ -6,8 +6,7 @@ # PORTNAME= racoon -PORTVERSION= 20040818a -PORTREVISION= 1 +PORTVERSION= 20050510a CATEGORIES= security net ipv6 MASTER_SITES= ftp://ftp.kame.net/pub/kame/misc/ diff --git a/security/racoon/distinfo b/security/racoon/distinfo index 62ac81a89bd5..2ef8af27d24d 100644 --- a/security/racoon/distinfo +++ b/security/racoon/distinfo @@ -1,2 +1,2 @@ -MD5 (racoon-20040818a.tar.gz) = c983587afc2772c11e4b81c3b4b9dfc4 -SIZE (racoon-20040818a.tar.gz) = 397275 +MD5 (racoon-20050510a.tar.gz) = 50a43fa2151e52aa138922fdd9466691 +SIZE (racoon-20050510a.tar.gz) = 398231 diff --git a/security/racoon/files/patch-crypto_openssl.c b/security/racoon/files/patch-crypto_openssl.c deleted file mode 100644 index 3f243d19c8e2..000000000000 --- a/security/racoon/files/patch-crypto_openssl.c +++ /dev/null @@ -1,42 +0,0 @@ ---- crypto_openssl.old.c 2004-04-09 22:25:56.000000000 +0530 -+++ crypto_openssl.c 2004-08-02 20:30:03.000000000 +0530 -@@ -1654,6 +1654,7 @@ - - HMAC_Final((HMAC_CTX *)c, res->v, &l); - res->l = l; -+ HMAC_cleanup((HMAC_CTX *)c); - (void)racoon_free(c); - - if (SHA512_DIGEST_LENGTH != res->l) { -@@ -1710,6 +1711,7 @@ - - HMAC_Final((HMAC_CTX *)c, res->v, &l); - res->l = l; -+ HMAC_cleanup((HMAC_CTX *)c); - (void)racoon_free(c); - - if (SHA384_DIGEST_LENGTH != res->l) { -@@ -1766,6 +1768,7 @@ - - HMAC_Final((HMAC_CTX *)c, res->v, &l); - res->l = l; -+ HMAC_cleanup((HMAC_CTX *)c); - (void)racoon_free(c); - - if (SHA256_DIGEST_LENGTH != res->l) { -@@ -1823,6 +1826,7 @@ - - HMAC_Final((HMAC_CTX *)c, res->v, &l); - res->l = l; -+ HMAC_cleanup((HMAC_CTX *)c); - (void)racoon_free(c); - - if (SHA_DIGEST_LENGTH != res->l) { -@@ -1879,6 +1883,7 @@ - - HMAC_Final((HMAC_CTX *)c, res->v, &l); - res->l = l; -+ HMAC_cleanup((HMAC_CTX *)c); - (void)racoon_free(c); - - if (MD5_DIGEST_LENGTH != res->l) { diff --git a/security/racoon/files/patch-pfkey_dump.c b/security/racoon/files/patch-pfkey_dump.c new file mode 100644 index 000000000000..d05adf29811b --- /dev/null +++ b/security/racoon/files/patch-pfkey_dump.c @@ -0,0 +1,20 @@ +--- ../libipsec/pfkey_dump.c.orig Mon Jan 31 17:25:28 2005 ++++ ../libipsec/pfkey_dump.c Tue May 10 13:00:38 2005 +@@ -532,7 +532,7 @@ str_prefport(family, pref, port, ulp) + else + snprintf(prefbuf, sizeof(prefbuf), "/%u", pref); + +- if (ulp == IPPROTO_ICMPV6 || ulp == IPPROTO_MH) ++ if (ulp == IPPROTO_ICMPV6) + memset(portbuf, 0, sizeof(portbuf)); + else { + if (port == IPSEC_PORT_ANY) +@@ -570,8 +570,6 @@ + else + printf("%u", ulp); + +- if (ulp == IPPROTO_MH && p1 != 0) +- printf(" %u", p1); + endprotoent(); + break; + } |