ObjOpenSSL  Check-in [5247b6dff2]

Overview
Comment:Nicer SSLInvalidCertificateException description.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 5247b6dff2a84607bca83b8d3488d64e47b57102852077a3e798ed17893200b9
User & Date: js on 2012-03-20 21:47:06
Other Links: manifest | tags
Context
2012-03-20
21:53
Fix copyright. check-in: 4564eb6a94 user: js tags: trunk
21:47
Nicer SSLInvalidCertificateException description. check-in: 5247b6dff2 user: js tags: trunk
21:45
Change URL in copyright to Git repository. check-in: 87d86871ad user: js tags: trunk
Changes

Modified src/SSLInvalidCertificateException.m from [3c09e92aa1] to [c4863306cd].

64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80

- (OFString*)description
{
	if (description != nil)
		return description;

	description = [[OFString alloc] initWithFormat:
	    @"Invalid certificate, Reason: %@!", reason];

	return description;
}

- (OFString*)reason
{
	return reason;
}
@end







|









64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80

- (OFString*)description
{
	if (description != nil)
		return description;

	description = [[OFString alloc] initWithFormat:
	    @"Invalid certificate! Reason: %@", reason];

	return description;
}

- (OFString*)reason
{
	return reason;
}
@end