Open GoogleCodeExporter opened 8 years ago
I have fixed the issue here is a diff.
Original comment by Crunchy...@gmail.com
on 14 Oct 2008 at 4:30
Attachments:
You unfortunately supplied the diff arguments the wrong way around, and so your
patch
will not work (basically will undo from future revision). Attached is a modified
patch that should work.
Original comment by sweetlil...@gmail.com
on 31 Oct 2008 at 9:44
Attachments:
The original patch only supported domains 3 levels deep (aka flash.company.com
with a *.company.com cert).
This now supports arbitrarily deep levels (aka flash.dev.company.com with
*.company.com cert).
Original comment by Crunchy...@gmail.com
on 8 Jan 2009 at 7:50
Attachments:
Actually that last patch is broken:
certArray[certArray.length] etc. is out of bounds.
something like this:
var firstCertName:String = firstCert.getCommonName().toLowerCase();
var otherCertName:String = _otherIdentity.toLowerCase();
var re:RegExp = new RegExp("^" + firstCertName.replace("*", ".*") + "$");
if (re.test(otherCertName))
{
...
}
should work.
Original comment by sweetlil...@gmail.com
on 15 Mar 2011 at 5:37
Thank you. This patch was very helpful.
Original comment by denis.vi...@gmail.com
on 23 May 2013 at 10:49
Original issue reported on code.google.com by
Crunchy...@gmail.com
on 13 Oct 2008 at 9:34Attachments: