From efd6c9e3728bceaf4e355ca1c6584a35f5eb1b1b Mon Sep 17 00:00:00 2001 Message-Id: From: Mark Wooding Date: Sun, 4 Feb 2001 17:10:40 +0000 Subject: [PATCH] Remove a debugging @abort@ call. Organization: Straylight/Edgeware From: mdw --- tripe.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tripe.c b/tripe.c index cacc7708..db5a7013 100644 --- a/tripe.c +++ b/tripe.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: tripe.c,v 1.2 2001/02/03 22:33:00 mdw Exp $ + * $Id: tripe.c,v 1.3 2001/02/04 17:10:40 mdw Exp $ * * Main program * @@ -29,6 +29,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: tripe.c,v $ + * Revision 1.3 2001/02/04 17:10:40 mdw + * Remove a debugging @abort@ call. + * * Revision 1.2 2001/02/03 22:33:00 mdw * Stuff more randomness into the pool in the interval timer. * @@ -298,7 +301,6 @@ int main(int argc, char *argv[]) selerr = 0; else if (errno != EINTR && errno != EAGAIN) { a_warn("select failed: %s", strerror(errno)); - abort(); selerr++; if (selerr > 8) { a_warn("too many select errors: bailing out"); -- [mdw]