Attempting to fix tinderbox bustage from bug 378241

This commit is contained in:
kaie@kuix.de 2007-12-04 11:38:27 -08:00
Родитель 147a3bd523
Коммит 81ef399aa5
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -79,8 +79,8 @@ interface nsINSSErrorsService : nsISupports
* The security module will perform a runtime check and assertion
* to ensure the values are in synch with NSS.
*/
const long NSS_SEC_ERROR_BASE = (-0x2000);
const long NSS_SEC_ERROR_BASE = -(0x2000);
const long NSS_SEC_ERROR_LIMIT = (NSS_SEC_ERROR_BASE + 1000);
const long NSS_SSL_ERROR_BASE = (-0x3000);
const long NSS_SSL_ERROR_BASE = -(0x3000);
const long NSS_SSL_ERROR_LIMIT = (NSS_SSL_ERROR_BASE + 1000);
};