Skip to content

Commit

Permalink
Fix logic bug #584
Browse files Browse the repository at this point in the history
  • Loading branch information
WouterTinus committed Sep 25, 2017
1 parent ed9d07f commit d137c81
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions letsencrypt-win-simple/Program.cs
Expand Up @@ -774,10 +774,10 @@ public static string GetCertificate(Target binding)
intermediate.CopyTo(chain);
}

Log.Debug($"CentralSsl {Options.CentralSsl} - San {binding.HostIsDns == true}");
Log.Debug($"CentralSsl {Options.CentralSsl} - San {binding.HostIsDns == false}");

//Central SSL and San need to save the cert for each hostname
if (Options.CentralSsl && binding.HostIsDns == true)
if (Options.CentralSsl && binding.HostIsDns == false)
{
foreach (var host in identifiers)
{
Expand Down

0 comments on commit d137c81

Please sign in to comment.