fixes bug 190840 "If connection times out, no error messages displayed"

r=dougt sr=bzbarsky a=asa
This commit is contained in:
darin%netscape.com 2003-01-28 19:19:08 +00:00
Родитель e8caee69c2
Коммит 0e1462cc9b
1 изменённых файлов: 2 добавлений и 0 удалений

Просмотреть файл

@ -127,12 +127,14 @@ ErrorAccordingToNSPR(PRErrorCode errorCode)
case PR_NETWORK_UNREACHABLE_ERROR: // XXX need new nsresult for this!
rv = NS_ERROR_CONNECTION_REFUSED;
break;
case PR_IO_TIMEOUT_ERROR:
case PR_CONNECT_TIMEOUT_ERROR:
rv = NS_ERROR_NET_TIMEOUT;
break;
default:
rv = NS_ERROR_FAILURE;
}
LOG(("ErrorAccordingToNSPR [in=%d out=%x]\n", errorCode, rv));
return rv;
}