bug 819106 - update processStsHeader call in hsts preload list script r=bsmith DONTBUILD (NPOTB)

This commit is contained in:
David Keeler 2012-12-06 16:46:00 -08:00
Родитель aa6a61c8ef
Коммит 1f14212b7c
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -105,7 +105,7 @@ function processStsHeader(hostname, header, status) {
if (header != null) {
try {
var uri = Services.io.newURI("https://" + host.name, null, null);
gSTSService.processStsHeader(uri, header, maxAge, includeSubdomains);
gSTSService.processStsHeader(uri, header, 0, maxAge, includeSubdomains);
}
catch (e) {
dump("ERROR: could not process header '" + header + "' from " + hostname +