diff options
author | pettai <pettai@pkgsrc.org> | 2012-01-24 08:46:03 +0000 |
---|---|---|
committer | pettai <pettai@pkgsrc.org> | 2012-01-24 08:46:03 +0000 |
commit | 0578f5c14adc1da797cf1b4e409dcf2d7da8860f (patch) | |
tree | d7a48cf4c867d6b4fa2e8d99f4ad1a047e1bb532 | |
parent | fa7bea28de9d1df3434d41cc6f2fe3bdb24abfcf (diff) | |
download | pkgsrc-0578f5c14adc1da797cf1b4e409dcf2d7da8860f.tar.gz |
F4.0.4.21
- do_auth.py - better Nexus support, better AV replacement, and only
send roles to Nexus
- fix bug in checking the return value of regexec() for login and
enable ACLs.
- do_auth.py - better Nexus support, better AV replacement, and only
F4.0.4.22
- check of regexec() return value inverted
-rw-r--r-- | net/tacacs-shrubbery/Makefile | 4 | ||||
-rw-r--r-- | net/tacacs-shrubbery/distinfo | 10 | ||||
-rw-r--r-- | net/tacacs-shrubbery/patches/patch-ah | 17 |
3 files changed, 20 insertions, 11 deletions
diff --git a/net/tacacs-shrubbery/Makefile b/net/tacacs-shrubbery/Makefile index 4a4f4e67980..32041e20270 100644 --- a/net/tacacs-shrubbery/Makefile +++ b/net/tacacs-shrubbery/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.1.1.1 2011/11/30 23:47:29 pettai Exp $ +# $NetBSD: Makefile,v 1.2 2012/01/24 08:46:03 pettai Exp $ # -DISTNAME= tacacs+-F4.0.4.20 +DISTNAME= tacacs+-F4.0.4.22 PKGNAME= ${DISTNAME:S,-F,-,} CATEGORIES= net security MASTER_SITES= ftp://ftp.shrubbery.net/pub/tac_plus/ diff --git a/net/tacacs-shrubbery/distinfo b/net/tacacs-shrubbery/distinfo index 3a9f23c4eb1..649f4932452 100644 --- a/net/tacacs-shrubbery/distinfo +++ b/net/tacacs-shrubbery/distinfo @@ -1,10 +1,10 @@ -$NetBSD: distinfo,v 1.1.1.1 2011/11/30 23:47:29 pettai Exp $ +$NetBSD: distinfo,v 1.2 2012/01/24 08:46:03 pettai Exp $ -SHA1 (tacacs+-F4.0.4.20.tar.gz) = 233d3762357c8e59ec217102af53f2e7430300d7 -RMD160 (tacacs+-F4.0.4.20.tar.gz) = 6fc4f05c1ec963b4a9c6c2881fde12a0258eb359 -Size (tacacs+-F4.0.4.20.tar.gz) = 477649 bytes +SHA1 (tacacs+-F4.0.4.22.tar.gz) = a9d3f5293bb2df3e4adc6e61d523148eac2c8c4c +RMD160 (tacacs+-F4.0.4.22.tar.gz) = d241670b515846341d062446740a75897867922a +Size (tacacs+-F4.0.4.22.tar.gz) = 508611 bytes SHA1 (patch-ag) = f0cad7741f8127668d9c2929dcb74e0ed96d0db2 -SHA1 (patch-ah) = 2b09d7e67b865e26b37322ebfd7a76c44a8bce30 +SHA1 (patch-ah) = 5935a8150b5af461c16dcec21b19d7c1e7ffd322 SHA1 (patch-aj) = 618c6ff411502bd32af40e9f48c6e2f7ec55e996 SHA1 (patch-ak) = df059f82a38fb394b726ee46fa87aa0ea04681c3 SHA1 (patch-al) = 85e964f23aa228f3d1debf0f407d5d8857ff2bcf diff --git a/net/tacacs-shrubbery/patches/patch-ah b/net/tacacs-shrubbery/patches/patch-ah index 0d85e593140..99b1dd68be5 100644 --- a/net/tacacs-shrubbery/patches/patch-ah +++ b/net/tacacs-shrubbery/patches/patch-ah @@ -1,10 +1,19 @@ -$NetBSD: patch-ah,v 1.1.1.1 2011/11/30 23:47:29 pettai Exp $ +$NetBSD: patch-ah,v 1.2 2012/01/24 08:46:04 pettai Exp $ Handle IRIX the same way as Solaris ---- do_acct.c.orig 2011-11-30 17:58:18.000000000 +0100 -+++ do_acct.c 2011-11-30 17:58:28.000000000 +0100 -@@ -223,7 +223,7 @@ +--- do_acct.c.orig 2012-01-24 07:39:56.000000000 +0000 ++++ do_acct.c +@@ -214,7 +214,7 @@ wtmp_entry(char *line, char *name, char + if (!wtmpfile) { + return(1); + } +-#if HAVE_UTMPX_H ++#if HAVE_UTMPX_H && !HAVE_UTMP_H + # define ut_name ut_user + #endif + +@@ -230,7 +230,7 @@ wtmp_entry(char *line, char *name, char else memcpy(entry.ut_name, name, sizeof(entry.ut_name)); |