freebsd-ports/security/qca-tls/files/patch-qca-tls.cpp
Dmitry Sivachenko 0a7ff81632 Fix build with openssl-0.9.8.
PR:		85309
Submitted by:	Daniel Roethlisberger <daniel@roe.ch>
2005-09-06 06:06:15 +00:00

26 lines
687 B
C++

--- qca-tls.cpp.orig Fri Aug 26 10:47:35 2005
+++ qca-tls.cpp Fri Aug 26 10:51:07 2005
@@ -454,7 +454,11 @@
if(!r) {
// try this other public function, for whatever reason
p = (void *)in;
+#ifdef OSSL_098
+ r = d2i_RSA_PUBKEY(NULL, (const unsigned char **)&p, len);
+#else
r = d2i_RSA_PUBKEY(NULL, (unsigned char **)&p, len);
+#endif
}
if(r) {
if(pub) {
@@ -799,7 +803,11 @@
bool createFromDER(const char *in, unsigned int len)
{
unsigned char *p = (unsigned char *)in;
+#ifdef OSSL_098
+ X509 *t = d2i_X509(NULL, (const unsigned char**)&p, len);
+#else
X509 *t = d2i_X509(NULL, &p, len);
+#endif
if(!t)
return false;
fromX509(t);