diff options
| author | Ingela Anderton Andin <[email protected]> | 2015-12-11 11:59:02 +0100 | 
|---|---|---|
| committer | Ingela Anderton Andin <[email protected]> | 2015-12-11 11:59:02 +0100 | 
| commit | c636a384b5375063d92b4ea25c0e646194240b4f (patch) | |
| tree | 9ffe7aed789f743e5d7f85a3c337cfc2056e1577 | |
| parent | c4bc990faf26a665e634362a046de2adbc37feee (diff) | |
| download | otp-c636a384b5375063d92b4ea25c0e646194240b4f.tar.gz otp-c636a384b5375063d92b4ea25c0e646194240b4f.tar.bz2 otp-c636a384b5375063d92b4ea25c0e646194240b4f.zip  | |
ssl: Fix typos
| -rw-r--r-- | lib/ssl/test/ssl_ECC_SUITE.erl | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ssl/test/ssl_ECC_SUITE.erl b/lib/ssl/test/ssl_ECC_SUITE.erl index fd2afc808c..75b639b23b 100644 --- a/lib/ssl/test/ssl_ECC_SUITE.erl +++ b/lib/ssl/test/ssl_ECC_SUITE.erl @@ -275,8 +275,8 @@ start_server(openssl, CA, OwnCa, Cert, Key, Config) ->      Version = tls_record:protocol_version(tls_record:highest_protocol_version([])),      Exe = "openssl",      Args = ["s_server", "-accept", integer_to_list(Port), ssl_test_lib:version_flag(Version), -	    "-verify", "2",  "-cert ", Cert, "-CAfile", NewCA, -	    "-key", Key, "-msg" "-debug"], +	    "-verify", "2", "-cert", Cert, "-CAfile", NewCA, +	    "-key", Key, "-msg", "-debug"],      OpenSslPort = ssl_test_lib:portable_open_port(Exe, Args),      true = port_command(OpenSslPort, "Hello world"),      {OpenSslPort, Port};  | 
