Ben Copsey

Fix warnings that appear when garbage collection is on - Closes gh-40

@@ -179,7 +179,7 @@ extern unsigned long const ASIWWANBandwidthThrottleAmount; @@ -179,7 +179,7 @@ extern unsigned long const ASIWWANBandwidthThrottleAmount;
179 179
180 // Used for authentication 180 // Used for authentication
181 CFHTTPAuthenticationRef requestAuthentication; 181 CFHTTPAuthenticationRef requestAuthentication;
182 - NSMutableDictionary *requestCredentials; 182 + NSDictionary *requestCredentials;
183 183
184 // Used during NTLM authentication 184 // Used during NTLM authentication
185 int authenticationRetryCount; 185 int authenticationRetryCount;
@@ -202,7 +202,7 @@ extern unsigned long const ASIWWANBandwidthThrottleAmount; @@ -202,7 +202,7 @@ extern unsigned long const ASIWWANBandwidthThrottleAmount;
202 202
203 // Used for proxy authentication 203 // Used for proxy authentication
204 CFHTTPAuthenticationRef proxyAuthentication; 204 CFHTTPAuthenticationRef proxyAuthentication;
205 - NSMutableDictionary *proxyCredentials; 205 + NSDictionary *proxyCredentials;
206 206
207 // Used during authentication with an NTLM proxy 207 // Used during authentication with an NTLM proxy
208 int proxyAuthenticationRetryCount; 208 int proxyAuthenticationRetryCount;
@@ -23,7 +23,7 @@ @@ -23,7 +23,7 @@
23 23
24 24
25 // Automatically set on build 25 // Automatically set on build
26 -NSString *ASIHTTPRequestVersion = @"v1.6.2-13 2010-06-01"; 26 +NSString *ASIHTTPRequestVersion = @"v1.6.2-14 2010-06-04";
27 27
28 NSString* const NetworkRequestErrorDomain = @"ASIHTTPRequestErrorDomain"; 28 NSString* const NetworkRequestErrorDomain = @"ASIHTTPRequestErrorDomain";
29 29
This diff was suppressed by a .gitattributes entry.