RT4232: Extra space in help message.
It turns out that -pause calls the undocumented function SSL_set_debug. That just sets flag inside the SSL structure. That flag, despite the command is never used. So remove the flag, the field, and the function. Reviewed-by: Richard Levitte <levitte@openssl.org>
This commit is contained in:
@@ -3052,8 +3052,6 @@ SSL *SSL_dup(SSL *s)
|
||||
|
||||
SSL_set_info_callback(ret, SSL_get_info_callback(s));
|
||||
|
||||
ret->debug = s->debug;
|
||||
|
||||
/* copy app data, a little dangerous perhaps */
|
||||
if (!CRYPTO_dup_ex_data(CRYPTO_EX_INDEX_SSL, &ret->ex_data, &s->ex_data))
|
||||
goto err;
|
||||
@@ -3665,11 +3663,6 @@ int ssl_handshake_hash(SSL *s, unsigned char *out, int outlen)
|
||||
return ret;
|
||||
}
|
||||
|
||||
void SSL_set_debug(SSL *s, int debug)
|
||||
{
|
||||
s->debug = debug;
|
||||
}
|
||||
|
||||
int SSL_cache_hit(SSL *s)
|
||||
{
|
||||
return s->hit;
|
||||
|
Reference in New Issue
Block a user