summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--csharp/src/IceSSL/SSLEngine.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/csharp/src/IceSSL/SSLEngine.cs b/csharp/src/IceSSL/SSLEngine.cs
index 4f99f959ecd..4e030df4fdc 100644
--- a/csharp/src/IceSSL/SSLEngine.cs
+++ b/csharp/src/IceSSL/SSLEngine.cs
@@ -73,7 +73,8 @@ namespace IceSSL
}
else
{
- _logger.warning("Invalid IceSSL.CertStore value `" + certStoreLocation + "' adjusted to `CurrentUser'");
+ _logger.warning("Invalid IceSSL.CertStoreLocation value `" + certStoreLocation +
+ "' adjusted to `CurrentUser'");
storeLocation = StoreLocation.CurrentUser;
}
_useMachineContext = certStoreLocation == "LocalMachine";