Skip to content
This repository has been archived by the owner on Mar 4, 2020. It is now read-only.

Commit

Permalink
Double quotes for data in curl command output module
Browse files Browse the repository at this point in the history
  • Loading branch information
MugunthKumar committed Apr 21, 2012
1 parent 5b66bcb commit ba03aaf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MKNetworkKit/MKNetworkOperation.m
Expand Up @@ -642,7 +642,7 @@ -(NSString*) curlCommandLineString
[displayString appendFormat:@" %@ \"%@=%@\"", option, key, obj];
}];
} else {
[displayString appendFormat:@" -d %@", [self encodedPostDataString]];
[displayString appendFormat:@" -d \"%@\"", [self encodedPostDataString]];
}


Expand Down

0 comments on commit ba03aaf

Please sign in to comment.