Skip to content

Commit

Permalink
SAN HostsPerPage Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rkerber committed Mar 8, 2016
1 parent 4a61ce1 commit e13f133
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions letsencrypt-win-simple/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -280,17 +280,17 @@ private static void Main(string[] args)
}
else
{
if (!Options.San)
for (int i = count; i <= targets.Count; i++)
{
for (int i = count; i <= targets.Count; i++)
if (!Options.San)
{
Console.WriteLine($" {count}: {targets[count - 1]}");
count++;
}
}
else
{
Console.WriteLine($" {targets[count - 1].SiteId}: SAN - {targets[count - 1]}");
else
{
Console.WriteLine(
$" {targets[count - 1].SiteId}: SAN - {targets[count - 1]}");
}
count++;
}
}
Expand Down

0 comments on commit e13f133

Please sign in to comment.