From 77c3d1593fc1ef5d36070fd72e499cf8a24df6cf Mon Sep 17 00:00:00 2001 From: Wolfgang Lux Date: Mon, 15 Jul 2013 14:53:09 +0000 Subject: [PATCH] Fix wrong command name in help. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/ec/trunk@36892 72102866-910b-0410-8b05-ffd578937521 --- EcCommand.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/EcCommand.m b/EcCommand.m index 8c99609..004db2f 100644 --- a/EcCommand.m +++ b/EcCommand.m @@ -658,9 +658,9 @@ static NSString* cmdWord(NSArray* a, unsigned int pos) @"the form YYYYMMDDhhmmss being the date and time at " @"which the archive was created.\n"; } - else if (comp(wd, @"Connect") >= 0) + else if (comp(wd, @"Control") >= 0) { - m = @"Connect ...\nPasses the command to the Control " + m = @"Control ...\nPasses the command to the Control " @"process. You may disconnect from this host by " @"typing 'control host'\n"; }