Skip to content

Commit 63cf63c

Browse files
committed
Fixed issue with SANs not being read.
1 parent b980ddd commit 63cf63c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
1+
v1.0.1
2+
- Fixed issue with SANs not being read correctly.
3+
14
v1.0
2-
-Initial Release.
5+
- Initial Release.

cscglobal-caplugin/RequestManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ private List<SubjectAlternativeName> GetSubjectAlternativeNames(EnrollmentProduc
230230
var subjectNameList = new List<SubjectAlternativeName>();
231231
var methodType = productInfo.ProductParameters["Domain Control Validation Method"];
232232

233-
foreach (var v in sans["dns"])
233+
foreach (var v in sans["dnsname"])
234234
{
235235
var domainName = v;
236236
var san = new SubjectAlternativeName();

0 commit comments

Comments
 (0)