From: hno <> Date: Sun, 23 Oct 2005 21:52:17 +0000 (+0000) Subject: Typo.. X-Git-Tag: SQUID_3_0_PRE4~574 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9f3de01a7b1d773fd8d5d505869073231a8a2a69;p=thirdparty%2Fsquid.git Typo.. --- diff --git a/src/client_side.cc b/src/client_side.cc index a6d25b58dd..88f57fbcca 100644 --- a/src/client_side.cc +++ b/src/client_side.cc @@ -1,6 +1,6 @@ /* - * $Id: client_side.cc,v 1.700 2005/10/23 15:50:01 hno Exp $ + * $Id: client_side.cc,v 1.701 2005/10/23 15:52:17 hno Exp $ * * DEBUG: section 33 Client-side Routines * AUTHOR: Duane Wessels @@ -2952,7 +2952,7 @@ clientNegotiateSSL(int fd, void *data) * OpenSSL headers do strange typecasts confusing GCC.. */ /* PEM_write_SSL_SESSION(debug_log, SSL_get_session(ssl)); */ #if defined(OPENSSL_VERSION_NUMBER) && OPENSSL_VERSION_NUMBER >= 0x0090708FL - PEM_ASN1_write((id2_of_void *)i2d_SSL_SESSION, PEM_STRING_SSL_SESSION, debug_log, (char *)SSL_get_session(ssl), NULL,NULL,0,NULL,NULL); + PEM_ASN1_write((i2d_of_void *)i2d_SSL_SESSION, PEM_STRING_SSL_SESSION, debug_log, (char *)SSL_get_session(ssl), NULL,NULL,0,NULL,NULL); #else PEM_ASN1_write((int(*)())i2d_SSL_SESSION, PEM_STRING_SSL_SESSION, debug_log, (char *)SSL_get_session(ssl), NULL,NULL,0,NULL,NULL);