summaryrefslogtreecommitdiff
path: root/windows
diff options
context:
space:
mode:
authorGrant Limberg <grant.limberg@zerotier.com>2017-01-05 13:56:15 -0800
committerGrant Limberg <grant.limberg@zerotier.com>2017-01-05 13:56:15 -0800
commit7ebb207005620ce753bed57e25afddff1bf7e80e (patch)
tree6b00a3cd8182a971bbeb305169e0b3c3cfa6c7bd /windows
parente41d71cd19b4179c0b061d1121527788f388c6e2 (diff)
parentaaf69d1aff59a244990e1c3c1de4ef6bf6ac6a3b (diff)
downloadinfinitytier-7ebb207005620ce753bed57e25afddff1bf7e80e.tar.gz
infinitytier-7ebb207005620ce753bed57e25afddff1bf7e80e.zip
Merge branch 'dev' of http://git.int.zerotier.com/ZeroTier/ZeroTierOne into dev
Diffstat (limited to 'windows')
-rw-r--r--windows/WinUI/APIHandler.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/windows/WinUI/APIHandler.cs b/windows/WinUI/APIHandler.cs
index 177d336f..a762fff7 100644
--- a/windows/WinUI/APIHandler.cs
+++ b/windows/WinUI/APIHandler.cs
@@ -61,7 +61,7 @@ namespace WinUI
String curPath = System.Reflection.Assembly.GetEntryAssembly().Location;
int index = curPath.LastIndexOf("\\");
curPath = curPath.Substring(0, index);
- ProcessStartInfo startInfo = new ProcessStartInfo(curPath + "\\copyutil.exe", globalZtDir + " " + localZtDir);
+ ProcessStartInfo startInfo = new ProcessStartInfo(curPath + "\\copyutil.exe", "\""+globalZtDir+"\"" + " " + "\""+localZtDir+"\"");
startInfo.Verb = "runas";