summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWouter Tinus <wouter.tinus@gmail.com>2020-06-27 19:01:53 +0200
committerWouter Tinus <wouter.tinus@gmail.com>2020-06-27 19:01:53 +0200
commite8f4db6e88650d44618e0c97d88100bf1460ce90 (patch)
tree563c2ae8d4be4d05807989f26f852d635b9507e0
parent5a5ed7060e4fd4276fe02ba7655f267b4301546f (diff)
downloadletsencrypt-win-simple-e8f4db6e88650d44618e0c97d88100bf1460ce90.zip
letsencrypt-win-simple-e8f4db6e88650d44618e0c97d88100bf1460ce90.tar.gz
letsencrypt-win-simple-e8f4db6e88650d44618e0c97d88100bf1460ce90.tar.bz2
fix #1591
-rw-r--r--src/main.lib/Plugins/StorePlugins/PfxFile/PfxFileOptionsFactory.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.lib/Plugins/StorePlugins/PfxFile/PfxFileOptionsFactory.cs b/src/main.lib/Plugins/StorePlugins/PfxFile/PfxFileOptionsFactory.cs
index 8cc998e..00359b4 100644
--- a/src/main.lib/Plugins/StorePlugins/PfxFile/PfxFileOptionsFactory.cs
+++ b/src/main.lib/Plugins/StorePlugins/PfxFile/PfxFileOptionsFactory.cs
@@ -28,7 +28,7 @@ namespace PKISharp.WACS.Plugins.StorePlugins
var path = args?.PfxFilePath;
if (string.IsNullOrWhiteSpace(path))
{
- path = _settings.Store.PfxFile?.DefaultPassword;
+ path = _settings.Store.PfxFile?.DefaultPath;
}
while (string.IsNullOrWhiteSpace(path) || !path.ValidPath(_log))
{