From 03be2c99ba7ce0b00988667061087e3bfc2cd62b Mon Sep 17 00:00:00 2001 From: Darshan Mody Date: Thu, 20 Jan 2011 12:11:22 -0800 Subject: Fixed compile using OpenSSL versions < 0.9.4a --- lib/ssluse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib') diff --git a/lib/ssluse.c b/lib/ssluse.c index 2e4343597..ef60e5e34 100644 --- a/lib/ssluse.c +++ b/lib/ssluse.c @@ -325,9 +325,9 @@ int cert_stuff(struct connectdata *conn, * If password has been given, we store that in the global * area (*shudder*) for a while: */ - size_t len = strlen(data->set.key_passwd); + size_t len = strlen(data->set.str[STRING_KEY_PASSWD]); if(len < sizeof(global_passwd)) - memcpy(global_passwd, data->set.key_passwd, len+1); + memcpy(global_passwd, data->set.str[STRING_KEY_PASSWD], len+1); #else /* * We set the password in the callback userdata -- cgit v1.2.3