Return previous compression methods when setting them.
diff --git a/ssl/ssl.h b/ssl/ssl.h index 4f38c3b..13e7b72 100644 --- a/ssl/ssl.h +++ b/ssl/ssl.h
@@ -2503,7 +2503,7 @@ const COMP_METHOD *SSL_get_current_expansion(SSL *s); const char *SSL_COMP_get_name(const COMP_METHOD *comp); STACK_OF(SSL_COMP) *SSL_COMP_get_compression_methods(void); -void SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP) *meths); +STACK_OF(SSL_COMP) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP) *meths); int SSL_COMP_add_compression_method(int id,COMP_METHOD *cm); #else const void *SSL_get_current_compression(SSL *s);
diff --git a/ssl/ssl_ciph.c b/ssl/ssl_ciph.c index 33b7d08..1927969 100644 --- a/ssl/ssl_ciph.c +++ b/ssl/ssl_ciph.c
@@ -1892,9 +1892,11 @@ return(ssl_comp_methods); } -void SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP) *meths) +STACK_OF(SSL_COMP) *SSL_COMP_set0_compression_methods(STACK_OF(SSL_COMP) *meths) { + STACK_OF(SSL_COMP) *old_meths = ssl_comp_methods; ssl_comp_methods = meths; + return old_meths; } int SSL_COMP_add_compression_method(int id, COMP_METHOD *cm)