diff options
author | dmcmahill <dmcmahill> | 2002-04-01 04:43:33 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill> | 2002-04-01 04:43:33 +0000 |
commit | c4904449e5c2c85ffbbcc1f7bcb80447ce86c10d (patch) | |
tree | 662728b471250c893647f3c915a5f985396d3dba /mail/yatsvrs | |
parent | 6460e0f5a51b2d42165fcc9e0cccdabca66c002d (diff) | |
download | pkgsrc-c4904449e5c2c85ffbbcc1f7bcb80447ce86c10d.tar.gz |
LP64 bug fix.
Diffstat (limited to 'mail/yatsvrs')
-rw-r--r-- | mail/yatsvrs/distinfo | 3 | ||||
-rw-r--r-- | mail/yatsvrs/patches/patch-bl | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/mail/yatsvrs/distinfo b/mail/yatsvrs/distinfo index ce962d3b625..494d3bc4791 100644 --- a/mail/yatsvrs/distinfo +++ b/mail/yatsvrs/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.2 2001/12/21 03:55:13 taca Exp $ +$NetBSD: distinfo,v 1.3 2002/04/01 04:43:33 dmcmahill Exp $ SHA1 (yatsvrs-5.00p6.tar.gz) = be94b29c8631acc1d7b3c4313501b6d674e6b43f Size (yatsvrs-5.00p6.tar.gz) = 210067 bytes @@ -39,3 +39,4 @@ SHA1 (patch-bh) = a9160a6156c2e8ea783dc11bdb5df6663f274192 SHA1 (patch-bi) = a17c470217673bb1f40e446a2867ced0a8c26cf3 SHA1 (patch-bj) = 50728ec84bee5177f60695fe3cff4c595636b300 SHA1 (patch-bk) = 06cbe5966a98cd5279e7d2d378704f4629dde9c8 +SHA1 (patch-bl) = 37b01451503a5b8035ea872b349ef4dff89cccd4 diff --git a/mail/yatsvrs/patches/patch-bl b/mail/yatsvrs/patches/patch-bl new file mode 100644 index 00000000000..903f14c00b2 --- /dev/null +++ b/mail/yatsvrs/patches/patch-bl @@ -0,0 +1,13 @@ +$NetBSD: patch-bl,v 1.1 2002/04/01 04:43:34 dmcmahill Exp $ + +--- common/base64.c.orig Fri Jun 22 03:49:56 2001 ++++ common/base64.c +@@ -110,7 +110,7 @@ + p = strchr(Base64Charset, c); + if (p == NULL) + return 0; +- return (((unsigned)p - (unsigned)Base64Charset) & 077); ++ return (((unsigned long)p - (unsigned long)Base64Charset) & 077); + } + + int Base64DecodeLine(pDst0, pnLen, pSrc0) |