I cannot reproduce the reported crash, but given that 1) it appears from the debian-amd64 mailing list to have something to do with the "daytime" service, 2) time() is incorrectly declared, which generally causes major problems on all 64-bit archs,
could you please try out this patch and report back if it helps? diff -Naur netkit-base-0.10/inetd/inetd.c netkit-base-0.10.fixed/inetd/inetd.c --- netkit-base-0.10/inetd/inetd.c 2005-04-29 09:33:20.363988319 +0200 +++ netkit-base-0.10.fixed/inetd/inetd.c 2005-04-29 09:13:48.282667028 +0200 @@ -153,6 +153,7 @@ #include <string.h> #include <getopt.h> #include <unistd.h> +#include <time.h> #ifdef RPC /* work around a compiler warning in rpc.h */ -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]