fix for openssl

This commit is contained in:
sthen 2010-10-04 08:46:51 +00:00
parent 63c5602f8b
commit 83d23531cd

View File

@ -0,0 +1,17 @@
$OpenBSD: patch-tls_tls_init_c,v 1.1 2010/10/04 08:46:51 sthen Exp $
fix for openssl 1.0
--- tls/tls_init.c.orig Sun Oct 3 23:42:58 2010
+++ tls/tls_init.c Sun Oct 3 23:43:44 2010
@@ -536,8 +536,8 @@ static int check_for_krb(void)
if (xx==NULL)
return -1;
- for( j=0 ; j<M_sk_num(xx->cipher_list) ; j++) {
- SSL_CIPHER *yy = (SSL_CIPHER*)M_sk_value(xx->cipher_list,j);
+ for( j=0 ; j<sk_SSL_CIPHER_num(xx->cipher_list) ; j++) {
+ SSL_CIPHER *yy = sk_SSL_CIPHER_value(xx->cipher_list,j);
if ( yy->id>=SSL3_CK_KRB5_DES_64_CBC_SHA &&
yy->id<=SSL3_CK_KRB5_RC4_40_MD5 ) {
LM_INFO("KRB5 cipher %s found\n", yy->name);