Gerry Weißbach

Added AuthenticationScheme to CopyWithZone

The CopyWithZone method did not copy the authenticationScheme, resulting
in problems when using a copied ASIHTTPRequest.
@@ -10,3 +10,4 @@ profile @@ -10,3 +10,4 @@ profile
10 *.pbxuser 10 *.pbxuser
11 *.mode1v3 11 *.mode1v3
12 External/GHUnit/* 12 External/GHUnit/*
  13 +.svn
@@ -4081,6 +4081,7 @@ static NSOperationQueue *sharedQueue = nil; @@ -4081,6 +4081,7 @@ static NSOperationQueue *sharedQueue = nil;
4081 [newRequest setShouldUseRFC2616RedirectBehaviour:[self shouldUseRFC2616RedirectBehaviour]]; 4081 [newRequest setShouldUseRFC2616RedirectBehaviour:[self shouldUseRFC2616RedirectBehaviour]];
4082 [newRequest setShouldAttemptPersistentConnection:[self shouldAttemptPersistentConnection]]; 4082 [newRequest setShouldAttemptPersistentConnection:[self shouldAttemptPersistentConnection]];
4083 [newRequest setPersistentConnectionTimeoutSeconds:[self persistentConnectionTimeoutSeconds]]; 4083 [newRequest setPersistentConnectionTimeoutSeconds:[self persistentConnectionTimeoutSeconds]];
  4084 + [newRequest setAuthenticationScheme:[self authenticationScheme]];
4084 return newRequest; 4085 return newRequest;
4085 } 4086 }
4086 4087