Deb package

David Relson relson at osagesoftware.com
Tue Jan 28 23:34:56 CET 2003


Clint,

Attached is a patch that should help the bogoutil "Unknown data size" 
problem.  Am I right to guess that alpha and ia64 have 8 byte longs?


That's the easy one.  I'll have to look at the logs of the others.

I'm committing the patch to cvs because I'm sure it's needed.  Looks like 
there'll be a 10.1.3-bug-fix ...

David

At 05:24 PM 1/28/03, Clint Adams wrote:

> > bogofilter |  0.9.1.2-5 |      unstable | alpha, ia64
>
>alpha and ia64:
>
>http://buildd.debian.org/fetch.php?&pkg=bogofilter&ver=0.10.1.2-1&arch=alpha&stamp=1043778678&file=log&as=raw
>http://buildd.debian.org/fetch.php?&pkg=bogofilter&ver=0.10.1.2-1&arch=ia64&stamp=1043778879&file=log&as=raw
>
>Both have
>bogoutil: Unknown data size - 16.

Should be fixed by patch.


> > bogofilter |   0.10.1-2 |      unstable | mips, mipsel
>
>mipsel:
>
>http://buildd.debian.org/fetch.php?&pkg=bogofilter&ver=0.10.1.2-1&arch=mipsel&stamp=1043788996&file=log&as=raw
>
>Problem with t.lock2.
>
> > bogofilter | 0.10.1.1-1 |      unstable | arm, hppa, i386, m68k, 
> powerpc, s390
>
>arm:
>
>http://buildd.debian.org/fetch.php?&pkg=bogofilter&ver=0.10.1.2-1&arch=arm&stamp=1043782744&file=log&as=raw
>
>t.lock2 failure
>
> > bogofilter | 0.10.1.2-1 |      unstable | source, sparc
>
>The rest should be okay, and the hppa MALLOC_CHECK_ problem should be
>addressed in glibc shortly.
>
>---------------------------------------------------------------------
>FAQ: http://bogofilter.sourceforge.net/bogofilter-faq.html
>To unsubscribe, e-mail: bogofilter-dev-unsubscribe at aotto.com
>For summary digest subscription: bogofilter-dev-digest-subscribe at aotto.com
>For more commands, e-mail: bogofilter-dev-help at aotto.com
-------------- next part --------------
Index: bogoutil.c
===================================================================
RCS file: /cvsroot/bogofilter/bogofilter/bogoutil.c,v
retrieving revision 1.56
diff -u -r1.56 bogoutil.c
--- bogoutil.c	21 Jan 2003 04:40:39 -0000	1.56
+++ bogoutil.c	28 Jan 2003 22:31:13 -0000
@@ -48,7 +48,7 @@
     dbv_t val = {0, 0};
     (void)userdata;
 
-    if (datalen != 4 && datalen != 8) {
+    if (datalen != sizeof(long) && datalen != 2 * sizeof(long)) {
 	print_error(__FILE__, __LINE__, "Unknown data size - %ld.\n", datalen);
 	return 0;
     }



More information about the bogofilter-dev mailing list