Commit bdfc75e7 authored by Steve Holme's avatar Steve Holme
Browse files

openssl.c: Fixed compilation warning

warning: declaration of 'minor' shadows a global declaration
parent da23624b
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -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 {