CVS commit by thiago: NoError is not an error and, therefore, certainly not a fatal error. Thanks to Michel Hermier for pointing it out. CCMAIL:michel.hermier@wanadoo.fr M +2 -1 ksocketbase.cpp 1.9 --- kdelibs/kdecore/network/ksocketbase.cpp #1.8:1.9 @@ -1,4 +1,4 @@ /* -*- C++ -*- - * Copyright (C) 2003 Thiago Macieira + * Copyright (C) 2003,2004 Thiago Macieira * * @@ -258,4 +258,5 @@ bool KSocketBase::isFatalError(int code) case WouldBlock: case InProgress: + case NoError: return false; }