Print this page
4853 illumos-gate is not lint-clean when built with openssl 1.0
Reviewed by Keith Wesolowski <keith.wesolowski@joyent.com>
Reviewed by Alexander Eremin <alexander.eremin@nexenta.com>

Split Close
Expand all
Collapse all
          --- old/usr/src/common/net/wanboot/boot_http.c
          +++ new/usr/src/common/net/wanboot/boot_http.c
↓ open down ↓ 2246 lines elided ↑ open up ↑
2247 2247          const char      *name;
2248 2248  
2249 2249          if (ssl == NULL)
2250 2250                  return;
2251 2251  
2252 2252          sk = SSL_get_ciphers(ssl);
2253 2253          if (sk == NULL)
2254 2254                  return;
2255 2255  
2256 2256          for (i = 0; i < sk_SSL_CIPHER_num(sk); i++) {
2257      -                /* LINTED */
2258 2257                  c = sk_SSL_CIPHER_value(sk, i);
2259 2258                  libbootlog(BOOTLOG_VERBOSE, "%08lx %s", c->id, c->name);
2260 2259          }
2261 2260          name = SSL_get_cipher_name(ssl);
2262 2261          if (name == NULL)
2263 2262                  name = "";
2264 2263          libbootlog(BOOTLOG_VERBOSE, "Current cipher = %s", name);
2265 2264  }
2266 2265  
2267 2266  /*
↓ open down ↓ 663 lines elided ↑ open up ↑
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX