Rename initWithStruct: to initWithX509Struct: to avoid potential conflicts
This commit is contained in:
parent
5e38932ed3
commit
4852272bcf
3 changed files with 3 additions and 3 deletions
|
@ -358,7 +358,7 @@ ssl_locking_callback(int mode, int n, const char *file, int line)
|
||||||
return nil;
|
return nil;
|
||||||
|
|
||||||
return [[[X509Certificate alloc]
|
return [[[X509Certificate alloc]
|
||||||
initWithStruct: certificate] autorelease];
|
initWithX509Struct: certificate] autorelease];
|
||||||
}
|
}
|
||||||
|
|
||||||
- (void)verifyPeerCertificate
|
- (void)verifyPeerCertificate
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
- initWithFile: (OFString*)file;
|
- initWithFile: (OFString*)file;
|
||||||
- initWithStruct: (X509*)cert;
|
- initWithX509Struct: (X509*)cert;
|
||||||
- (OFDictionary*)issuer;
|
- (OFDictionary*)issuer;
|
||||||
- (OFDictionary*)subject;
|
- (OFDictionary*)subject;
|
||||||
- (OFDictionary*)subjectAlternativeName;
|
- (OFDictionary*)subjectAlternativeName;
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
return self;
|
return self;
|
||||||
}
|
}
|
||||||
|
|
||||||
- initWithStruct: (X509*)cert
|
- initWithX509Struct: (X509*)cert
|
||||||
{
|
{
|
||||||
self = [self init];
|
self = [self init];
|
||||||
|
|
||||||
|
|
Reference in a new issue