Use standard locks rathere than obsolete lazy lock classes

This commit is contained in:
Richard Frith-Macdonald 2018-04-10 14:59:35 +01:00
parent 6c3d99ea3f
commit 3ced3237e8
17 changed files with 63 additions and 36 deletions

View file

@ -78,10 +78,10 @@
/*
* Internal class for handling HTTP authentication
*/
@class GSLazyLock;
@class NSLock;
@interface GSHTTPAuthentication : NSObject
{
GSLazyLock *_lock;
NSLock *_lock;
NSURLCredential *_credential;
NSURLProtectionSpace *_space;
NSString *_nonce;