Commit b2d6aed4 authored by Matt Caswell's avatar Matt Caswell
Browse files

Fix error in ssltest



Compiling ssltest with some compilers using --strict-warnings results in
complaints about an unused result.

Reviewed-by: default avatarKurt Roeckx <kurt@openssl.org>
parent a8a35540
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -1626,7 +1626,8 @@ int main(int argc, char *argv[])
        rv = SSL_CONF_cmd(c_cctx, arg, argn);
        /* If not recognised use server context */
        if (rv == -2) {
            (void)SSL_CONF_cmd(s_cctx2, arg, argn);
            rv = SSL_CONF_cmd(s_cctx2, arg, argn);
            if (rv > 0)
                rv = SSL_CONF_cmd(s_cctx, arg, argn);
        }
        if (rv <= 0) {