From d94122c07bc6b303e0ef608b2dd8d5dd837e70ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benoi=CC=82t=20LeBlanc?= Date: Wed, 18 Dec 2013 13:00:16 -0500 Subject: [PATCH] Fixed mac cli message box message --- client/Mac/cli/AppDelegate.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Mac/cli/AppDelegate.m b/client/Mac/cli/AppDelegate.m index 674a12e50..351111b97 100644 --- a/client/Mac/cli/AppDelegate.m +++ b/client/Mac/cli/AppDelegate.m @@ -195,7 +195,7 @@ void AppDelegate_ConnectionResultEventHandler(void* ctx, ConnectionResultEventAr NSString* message = nil; if (connectErrorCode == AUTHENTICATIONERROR) { - message = [NSString stringWithFormat:@"%@:\n%@", message, @"Authentication failure, check credentials."]; + message = [NSString stringWithFormat:@"%@", @"Authentication failure, check credentials."]; }