K 10 svn:author V 7 rwatson K 8 svn:date V 27 2004-03-30T20:25:33.000000Z K 7 svn:log V 569 MFC src/usr.sbin/sbin/nfsd.c:1.29: Problem: When an NFS server is port-scanned nfsd sometimes exits. This has happened 3 times the last few weeks. Nfsd has been written to exit when accept(2) fails. Unfortunately accept can sometimes make a "normal" return with errno ECONNABORTED and in this case nfsd exits prematurely. Solution: Check for ECONNABORTED (and also EINTR, since nfsd uses signals) and continue. Submitted by: Bjoern Groenvall PR: 61084 Reminded by: Lewis Thompson END