From c410312adf88a3e8153d91de8c6aa87521b79d6f Mon Sep 17 00:00:00 2001 From: obrien Date: Sat, 11 Aug 2001 00:07:14 +0000 Subject: Fix a int vs. size_t bogon that matters for LP64. Submitted by: Brandon Poyner --- security/pgp5/files/patch-filter.c | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 security/pgp5/files/patch-filter.c 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; + -- cgit