diff options
author | Loïc Hoguin <[email protected]> | 2015-06-02 17:04:03 +0300 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2015-06-02 17:04:03 +0300 |
commit | e0c0f013f0e70a9a703879a34240ac3f73de0c0a (patch) | |
tree | bb578d3ffed7219229293fd15bc1291227945aa3 /lib/ssl | |
parent | 65bf43e82a8ec731aafdbac74d41d65b63c7f49c (diff) | |
download | otp-e0c0f013f0e70a9a703879a34240ac3f73de0c0a.tar.gz otp-e0c0f013f0e70a9a703879a34240ac3f73de0c0a.tar.bz2 otp-e0c0f013f0e70a9a703879a34240ac3f73de0c0a.zip |
ssl: Fix small error in an ALPN test
Diffstat (limited to 'lib/ssl')
-rw-r--r-- | lib/ssl/test/ssl_to_openssl_SUITE.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssl/test/ssl_to_openssl_SUITE.erl b/lib/ssl/test/ssl_to_openssl_SUITE.erl index aca34cb6e9..21ce4c4a29 100644 --- a/lib/ssl/test/ssl_to_openssl_SUITE.erl +++ b/lib/ssl/test/ssl_to_openssl_SUITE.erl @@ -1036,7 +1036,7 @@ erlang_client_openssl_server_alpn(Config) when is_list(Config) -> erlang_server_alpn_openssl_client(Config) when is_list(Config) -> Data = "From openssl to erlang", start_erlang_server_and_openssl_client_with_opts(Config, - [{alpn_advertised_protocols, [<<"spdy/2">>]}], + [{alpn_preferred_protocols, [<<"spdy/2">>]}], "", Data, fun(Server, OpensslPort) -> true = port_command(OpensslPort, Data), |