Reputation: 20730
Compiling one of my libraries on Ubuntu 22.04, I get a deprecated error on the ERR_load_SSL_strings()
call. There is no comment other than the date when it was deprecated. Searching with Google doesn't return anything useful.
Is there a replacement to that function? or can we do without it now?
Upvotes: 2
Views: 1301
Reputation: 9392
Is there a replacement to that function? or can we do without it now?
There is no replacement. You don't need to call it anymore. Error strings are loaded automatically since OpenSSL 1.1.0.
Upvotes: 4