diff options
author | itojun <itojun> | 2001-06-11 11:23:20 +0000 |
---|---|---|
committer | itojun <itojun> | 2001-06-11 11:23:20 +0000 |
commit | 36132f8a218f4993d8b5c73545a30e196bcff4a0 (patch) | |
tree | d862472c4fe39fa6237a293aedb0d9e0650649f0 /security/isakmpd/patches | |
parent | 07f7250f3c3bb1da126a264244adad5162f0e4db (diff) | |
download | pkgsrc-36132f8a218f4993d8b5c73545a30e196bcff4a0.tar.gz |
upgrade to 20010611.
key changes since 20010403:
- be more picky about isakmpd.policy permission
- debug: dump decoded IKE packets in pcap(3) format
- cert improvements
- RFC2367 compliance
- bug fixes: correct SA refcnt, memory alloc and doc fixes
Diffstat (limited to 'security/isakmpd/patches')
-rw-r--r-- | security/isakmpd/patches/patch-ac | 13 | ||||
-rw-r--r-- | security/isakmpd/patches/patch-ba | 29 |
2 files changed, 0 insertions, 42 deletions
diff --git a/security/isakmpd/patches/patch-ac b/security/isakmpd/patches/patch-ac deleted file mode 100644 index 4c71f220be5..00000000000 --- a/security/isakmpd/patches/patch-ac +++ /dev/null @@ -1,13 +0,0 @@ -$NetBSD: patch-ac,v 1.3 2001/02/24 00:34:30 itojun Exp $ - ---- apps/certpatch/Makefile- Wed Feb 14 22:24:29 2001 -+++ apps/certpatch/Makefile Wed Feb 14 22:24:41 2001 -@@ -37,7 +37,7 @@ - - PROG= certpatch - SRCS= certpatch.c --BINDIR= /usr/sbin -+BINDIR?= /usr/sbin - TOPSRC= ${.CURDIR}/../.. - TOPOBJ!= cd ${TOPSRC}; printf "all:\n\t@pwd\n" |${MAKE} -f- - OS!= awk '/^OS=/ { print $$2 }' ${.CURDIR}/../../Makefile diff --git a/security/isakmpd/patches/patch-ba b/security/isakmpd/patches/patch-ba deleted file mode 100644 index e065512f51b..00000000000 --- a/security/isakmpd/patches/patch-ba +++ /dev/null @@ -1,29 +0,0 @@ -$NetBSD: patch-ba,v 1.2 2001/05/12 00:04:44 dmcmahill Exp $ - -The first change (the free line) had the following patch comment: - -Index: x509.c -=================================================================== -RCS file: /cvs/src/sbin/isakmpd/x509.c,v -retrieving revision 1.46 -retrieving revision 1.47 -diff -u -r1.46 -r1.47 - -the second (size_t -> u_int32_t) is to make the types match on -64-bit machines - ---- work.alpha/isakmpd/x509.c.orig Tue Mar 27 11:50:35 2001 -+++ work.alpha/isakmpd/x509.c Thu May 10 17:02:00 2001 -@@ -546,5 +546,4 @@ - } - -- free (x509_policy_asserts); - x509_policy_asserts = new_asserts; - } -@@ -626,5 +625,5 @@ - struct x509_hash *cert; - u_int8_t **cid; -- size_t *clen; -+ u_int32_t *clen; - int n, i, id_found; - |