From 713de37c5bc187166a47eb5acb1667b90b8ae367 Mon Sep 17 00:00:00 2001 From: samuele3hu Date: Sun, 4 Jan 2015 13:49:41 +0800 Subject: [PATCH] Fix compile iOS compile error on the Xcode 5.1.1 --- cocos/network/HttpClient-ios.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cocos/network/HttpClient-ios.mm b/cocos/network/HttpClient-ios.mm index ea56d4af16..6312a837b0 100644 --- a/cocos/network/HttpClient-ios.mm +++ b/cocos/network/HttpClient-ios.mm @@ -256,7 +256,7 @@ static int processTask(HttpRequest *request, NSString* requestType, void *stream NSString *domain = cookie.domain; //BOOL session = cookie.sessionOnly; NSString *path = cookie.path; - BOOL secure = cookie.secure; + BOOL secure = cookie.isSecure; NSDate *date = cookie.expiresDate; NSString *name = cookie.name; NSString *value = cookie.value;