summaryrefslogtreecommitdiff
path: root/security/pgp5
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2001-08-11 00:07:14 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2001-08-11 00:07:14 +0000
commit6db4c24ed3c2102f4b0f261ebb14abcc942e9f68 (patch)
treeab8a81bd7c0ecfe9bcb1d1da41775e030e103fd5 /security/pgp5
parentUnmark broken (diff)
Fix a int vs. size_t bogon that matters for LP64.
Submitted by: Brandon Poyner <brandon@thebiz.net>
Notes
Notes: svn path=/head/; revision=46054
Diffstat (limited to 'security/pgp5')
-rw-r--r--security/pgp5/files/patch-filter.c19
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 000000000000..493b635058b0
--- /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;
+