diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-04-05 05:10:37 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-04-05 05:10:37 +0000 |
commit | 9b6b08e6b497b8fb1b68acee6a493ae23446b504 (patch) | |
tree | 9e74967b57786c90226fdf7b435279cdffcf6a2a /net/tac_plus4 | |
parent | 0b6371b6ebcfdbf81a389de3da0476d9cfa09d1e (diff) | |
download | ports-9b6b08e6b497b8fb1b68acee6a493ae23446b504.tar.gz ports-9b6b08e6b497b8fb1b68acee6a493ae23446b504.zip |
Fix a problem with authentication not working on 64-bit platforms.
Submitted by: Ivan Dolezal <Ivan.Dolezal@vsb.cz>
Notes
Notes:
svn path=/head/; revision=78242
Diffstat (limited to 'net/tac_plus4')
-rw-r--r-- | net/tac_plus4/Makefile | 2 | ||||
-rw-r--r-- | net/tac_plus4/files/patch-md5.h | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/net/tac_plus4/Makefile b/net/tac_plus4/Makefile index 75d148bd443f..1bc8049f5251 100644 --- a/net/tac_plus4/Makefile +++ b/net/tac_plus4/Makefile @@ -7,7 +7,7 @@ PORTNAME= tac_plus PORTVERSION= F4.0.4 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= net MASTER_SITES= ftp://ftp-eng.cisco.com/pub/tacacs/ DISTNAME= tac_plus.F4.0.4.alpha diff --git a/net/tac_plus4/files/patch-md5.h b/net/tac_plus4/files/patch-md5.h new file mode 100644 index 000000000000..948cd3e38a03 --- /dev/null +++ b/net/tac_plus4/files/patch-md5.h @@ -0,0 +1,11 @@ +--- md5.h.orig Sat Apr 5 00:06:25 2003 ++++ md5.h Sat Apr 5 00:05:08 2003 +@@ -54,7 +54,7 @@ + #if defined(CISCO_MD5_MODS) + + /* typedef a 32-bit type */ +-typedef unsigned long int UINT4; ++typedef unsigned int UINT4; + + /* typedef a generic pointer type */ + typedef unsigned char *POINTER; |