aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPSSHTunnel.m
diff options
context:
space:
mode:
authorrowanbeentje <rowan@beent.je>2012-06-28 23:23:34 +0000
committerrowanbeentje <rowan@beent.je>2012-06-28 23:23:34 +0000
commitac7800cfb9b47acbfd6b7fcca9f981d3f1e70808 (patch)
treea9ecc8347d7fa93f9c1f4f03ccbcc220b4084a6d /Source/SPSSHTunnel.m
parent9bbbbc64e09039d6da3e8b274a771032005c8320 (diff)
downloadsequelpro-ac7800cfb9b47acbfd6b7fcca9f981d3f1e70808.tar.gz
sequelpro-ac7800cfb9b47acbfd6b7fcca9f981d3f1e70808.tar.bz2
sequelpro-ac7800cfb9b47acbfd6b7fcca9f981d3f1e70808.zip
- Use a per-user temporary directory for SSH tunnels (and bundle dragged temporary files)
Diffstat (limited to 'Source/SPSSHTunnel.m')
-rw-r--r--Source/SPSSHTunnel.m2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPSSHTunnel.m b/Source/SPSSHTunnel.m
index 51100c97..23e245a2 100644
--- a/Source/SPSSHTunnel.m
+++ b/Source/SPSSHTunnel.m
@@ -298,7 +298,7 @@
[taskArguments addObject:@"-N"]; // Tunnel only
[taskArguments addObject:@"-v"]; // Verbose mode for messages
[taskArguments addObject:@"-o ControlMaster=auto"]; // Support 'master' mode for connection sharing
- [taskArguments addObject:@"-o ControlPath=/tmp/SequelPro-%r@%h:%p"]; // Set a custom control path to avoid picking up existing masters without forwarding enabled
+ [taskArguments addObject:[NSString stringWithFormat:@"-o ControlPath=%@/SequelPro-%%r@%%h:%%p", [NSFileManager temporaryDirectory]]]; // Set a custom control path to avoid picking up existing masters without forwarding enabled
[taskArguments addObject:@"-o ExitOnForwardFailure=yes"];
[taskArguments addObject:[NSString stringWithFormat:@"-o ConnectTimeout=%ld", (long)connectionTimeout]];
[taskArguments addObject:@"-o NumberOfPasswordPrompts=3"];