From bdfc75e75195d70659997bfdb1f282ea31441f28 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Thu, 21 Aug 2014 20:38:13 +0100 Subject: openssl.c: Fixed compilation warning warning: declaration of 'minor' shadows a global declaration --- lib/vtls/openssl.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 10f13385c..ac82ad79d 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -2835,9 +2835,9 @@ size_t Curl_ossl_version(char *buffer, size_t size) } else { if(ssleay_value&0xff0) { - int minor = (ssleay_value >> 4) & 0xff; - if(minor > 26) { /* handle extended version introduced for 0.9.8za */ - sub[1] = (char) ((minor - 1) % 26 + 'a' + 1); + int minor_ver = (ssleay_value >> 4) & 0xff; + if(minor_ver > 26) { /* handle extended version introduced for 0.9.8za */ + sub[1] = (char) ((minor_ver - 1) % 26 + 'a' + 1); sub[0] = 'z'; } else { -- cgit v1.2.3