Archived

This forum has been archived. Please start a new discussion on GitHub.

Small typing error

Return chiper name instead of version and version instead of name.
(Ice-2.1.2)
    str = SSL_CIPHER_get_name(cipher);
    BIO_printf(bio, "Cipher Version: %s\n", ((str != 0) ? str : "(NONE)"));

    str = SSL_CIPHER_get_version(cipher);
    BIO_printf(bio, "Cipher Name:    %s\n", ((str != 0) ? str : "(NONE)"));

Comments

  • mes
    mes California
    Thanks, this will be fixed in the next release.

    - Mark