aboutsummaryrefslogtreecommitdiffstats
path: root/SSHTunnel_old.m
diff options
context:
space:
mode:
authorabhibeckert <abhi@abhibeckert.com>2008-04-05 01:38:54 +0000
committerabhibeckert <abhi@abhibeckert.com>2008-04-05 01:38:54 +0000
commit9b5ac7d5073e71e4fc78ee21ba46ad3b593a3ccc (patch)
tree504e35105a667d25695bde06d888f01ef61adae0 /SSHTunnel_old.m
parent175e96ac7aff9b9285c2c12027d554d3a825d5e9 (diff)
downloadsequelpro-9b5ac7d5073e71e4fc78ee21ba46ad3b593a3ccc.tar.gz
sequelpro-9b5ac7d5073e71e4fc78ee21ba46ad3b593a3ccc.tar.bz2
sequelpro-9b5ac7d5073e71e4fc78ee21ba46ad3b593a3ccc.zip
rename project; disable software update system (ticket #1)
Diffstat (limited to 'SSHTunnel_old.m')
-rwxr-xr-xSSHTunnel_old.m8
1 files changed, 4 insertions, 4 deletions
diff --git a/SSHTunnel_old.m b/SSHTunnel_old.m
index 57a458eb..7657ba22 100755
--- a/SSHTunnel_old.m
+++ b/SSHTunnel_old.m
@@ -3,7 +3,7 @@
SSHTunnel.m
Original code by tynsoe.org, Copyright 2002
-Modified by Lorenz Textor for use with CocoaMySQL
+Modified by Lorenz Textor for use with Sequel Pro
*/
@@ -132,7 +132,7 @@ Modified by Lorenz Textor for use with CocoaMySQL
[ environment setObject: pathToAuthentifier forKey: @"SSH_ASKPASS" ];
[ environment setObject:@":0" forKey:@"DISPLAY" ];
- [ environment setObject: @"CocoaMySQL Tunnel" forKey: @"TUNNEL_NAME" ];
+ [ environment setObject: @"Sequel Pro Tunnel" forKey: @"TUNNEL_NAME" ];
[ task setEnvironment: environment ];
stdErrPipe = [[ NSPipe alloc ] init ];
@@ -145,14 +145,14 @@ Modified by Lorenz Textor for use with CocoaMySQL
[[ stdErrPipe fileHandleForReading] waitForDataInBackgroundAndNotify ];
- NSLog(T_START,@"CocoaMySQL Tunnel");
+ NSLog(T_START,@"Sequel Pro Tunnel");
[ self setValue: S_CONNECTING forKey: @"status" ];
[ task launch ];
[[ NSNotificationCenter defaultCenter] postNotificationName:@"STMStatusChanged" object:self ];
[ task waitUntilExit ];
sleep(1);
[ self setValue: S_IDLE forKey: @"status" ];
- NSLog(T_STOP,@"CocoaMySQL Tunnel");
+ NSLog(T_STOP,@"Sequel Pro Tunnel");
[[ NSNotificationCenter defaultCenter] removeObserver:self
name: @"NSFileHandleDataAvailableNotification"
object:[ stdErrPipe fileHandleForReading]];