diff options
author | obrien <obrien@FreeBSD.org> | 2001-08-11 00:07:14 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-08-11 00:07:14 +0000 |
commit | c410312adf88a3e8153d91de8c6aa87521b79d6f (patch) | |
tree | cace9f5056fdf5852e5171c444c03a5d9b7298f2 /security | |
parent | 9fd86f9e5b5269ed523483e9c9fd7bec71c58910 (diff) | |
download | FreeBSD-ports-c410312adf88a3e8153d91de8c6aa87521b79d6f.zip FreeBSD-ports-c410312adf88a3e8153d91de8c6aa87521b79d6f.tar.gz |
Fix a int vs. size_t bogon that matters for LP64.
Submitted by: Brandon Poyner <brandon@thebiz.net>
Diffstat (limited to 'security')
-rw-r--r-- | security/pgp5/files/patch-filter.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/security/pgp5/files/patch-filter.c b/security/pgp5/files/patch-filter.c new file mode 100644 index 0000000..493b635 --- /dev/null +++ b/security/pgp5/files/patch-filter.c @@ -0,0 +1,19 @@ +*** apps/pgp/filter.c.orig Thu Aug 9 17:39:07 2001 +--- apps/pgp/filter.c Thu Aug 9 17:39:20 2001 +*************** +*** 269,275 **** + struct RingIterator *NameIter = NULL; + union RingObject *name; + Boolean OKToUse = FALSE, FoundName = FALSE; +! int len = 0; + int trust; + char *TempNameString = NULL; + +--- 269,275 ---- + struct RingIterator *NameIter = NULL; + union RingObject *name; + Boolean OKToUse = FALSE, FoundName = FALSE; +! size_t len = 0; + int trust; + char *TempNameString = NULL; + |