fix typos etc

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@39768 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Richard Frith-MacDonald 2016-05-15 10:25:34 +00:00
parent 1d2c5edcf1
commit 414b6be1b0
5 changed files with 13 additions and 6 deletions

View file

@ -124,14 +124,15 @@ typedef enum GSSocks4ResponseStatus {
description = @"identd is not running or not reachable from the server";
break;
case GSSocks4ResponseStatusUserNotConfirmed:
description = @"identd could not confirm the user ID string in the request";
description
= @"identd could not confirm the user ID string in the request";
break;
default:
description = @"unknown";
break;
}
description = [NSString stringWithFormat:
@"SOCKS4 connnection failed, reason: %@", description];
@"SOCKS4 connection failed, reason: %@", description];
return [self errorWithCode: aStatus description: description];
}