Index: benchmark/io/http/worker.cfa
===================================================================
--- benchmark/io/http/worker.cfa	(revision e9a7bdb3cea9a8ddd62237a656d9573dc28daa59)
+++ benchmark/io/http/worker.cfa	(revision 0f1336cbd29fbab1e765b02e04c1b7e14d4f22bc)
@@ -145,8 +145,8 @@
 		if( options.log ) mutex(sout) sout | "=== Accepting connection ===";
 		int fd = cfa_accept4( this.sockfd, this.[addr, addrlen, flags], CFA_IO_LAZY );
-		if(fd < 0) {
+		if(fd <= 0) {
 			if( errno == ECONNABORTED ) break;
 			if( this.done && (errno == EINVAL || errno == EBADF) ) break;
-			abort( "accept error: (%d) %s\n", (int)errno, strerror(errno) );
+			abort( "accept error %d: (%d) %s\n", fd, (int)errno, strerror(errno) );
 		}
 		if(this.done) break;
