diff options
author | marcus <marcus@FreeBSD.org> | 2003-04-05 13:10:37 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-04-05 13:10:37 +0800 |
commit | 0f9feac632aa4a4c4626701ed9317fee085159e8 (patch) | |
tree | c399289c4844a3b035bc1e403eeb39c2d2351db8 /net/tac_plus4 | |
parent | 98dce87b79847099ef4984ebe7ab56cdd1e3c38c (diff) | |
download | freebsd-ports-gnome-0f9feac632aa4a4c4626701ed9317fee085159e8.tar.gz freebsd-ports-gnome-0f9feac632aa4a4c4626701ed9317fee085159e8.tar.zst freebsd-ports-gnome-0f9feac632aa4a4c4626701ed9317fee085159e8.zip |
Fix a problem with authentication not working on 64-bit platforms.
Submitted by: Ivan Dolezal <Ivan.Dolezal@vsb.cz>
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; |