summaryrefslogtreecommitdiff
path: root/lang/mono/files/patch-mcs_class_Mono.Security_Mono.Security.X509_X509StoreManager.cs
blob: 9e1c62b7c5b48d7e9cd462584bcae12715afbed1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--- mcs/class/Mono.Security/Mono.Security.X509/X509StoreManager.cs.orig	2017-07-20 18:10:59 UTC
+++ mcs/class/Mono.Security/Mono.Security.X509/X509StoreManager.cs
@@ -73,7 +73,7 @@ namespace Mono.Security.X509 {
 				if (_localMachinePath == null) {
 					_localMachinePath = Path.Combine (
 						Environment.GetFolderPath (Environment.SpecialFolder.CommonApplicationData),
-						".mono");
+						"mono");
 					_localMachinePath = Path.Combine (_localMachinePath, "certs");
 				}
 				return _localMachinePath;
@@ -97,7 +97,7 @@ namespace Mono.Security.X509 {
 				if (_newLocalMachinePath == null) {
 					_newLocalMachinePath = Path.Combine (
 						Environment.GetFolderPath (Environment.SpecialFolder.CommonApplicationData),
-						".mono");
+						"mono");
 					_newLocalMachinePath = Path.Combine (_newLocalMachinePath, "new-certs");
 				}
 				return _newLocalMachinePath;