Use correct sense of the timeout value.

This commit is contained in:
relyea%netscape.com 2002-12-13 00:25:21 +00:00
Родитель edd5c403ca
Коммит f37146e332
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -4675,7 +4675,7 @@ PK11_WaitForTokenEvent(PK11SlotInfo *slot, PK11TokenEvent event,
if (timeout == PR_INTERVAL_NO_WAIT) {
return waitForRemoval ? PK11TokenPresent : PK11TokenRemoved;
}
if (timeout == PR_INTERVAL_NO_TIMEOUT ) {
if (timeout != PR_INTERVAL_NO_TIMEOUT ) {
interval = PR_IntervalNow();
if (!first_time_set) {
first_time = interval;