INN 2.4.3's batcher(8) dumps core with a bus error on NetBSD/sparc64 (presumably on any platform which has sizeof(size_t) != sizeof(int) and requires alignment). This happens because backends/batcher.c hands the address of the int BytesInArt over to storage/interface.c:FromWireFmt() which then dereferences it as a size_t: | (gdb) where | #0 FromWireFmt ( | article=0x22a400 "Path: news"..., len=634, newlen=0xffffffffffffc34c) | at interface.c:198 | #1 0x0000000000102c8c in main (ac=, | av=) at batcher.c:334 This is fixed in SVN trunk already, I've attached a patch for the 2.4 branch. Holger