summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spruiell <mes@zeroc.com>2015-05-01 16:18:15 -0700
committerMark Spruiell <mes@zeroc.com>2015-05-01 16:18:15 -0700
commit1f3a956b90c5313d6be180b4532517ddf0ab92cd (patch)
treed968dd94fd95fcf7324c6b15fb9cded7dff6ae11
parentUpdated gradle plugin version (diff)
downloadice-1f3a956b90c5313d6be180b4532517ddf0ab92cd.tar.bz2
ice-1f3a956b90c5313d6be180b4532517ddf0ab92cd.tar.xz
ice-1f3a956b90c5313d6be180b4532517ddf0ab92cd.zip
fix for C# log message
-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";