aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssl/src/ssl_connection.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2011-04-29 11:31:59 +0200
committerIngela Anderton Andin <[email protected]>2011-04-29 11:31:59 +0200
commit995daeae6917c1369ef4ea7a620c9488c4059456 (patch)
tree0a141d9b5ee1b63b22495c65978e71468aff302a /lib/ssl/src/ssl_connection.erl
parent3e815447cafbcb704bac1fac3d195e94def7080f (diff)
downloadotp-995daeae6917c1369ef4ea7a620c9488c4059456.tar.gz
otp-995daeae6917c1369ef4ea7a620c9488c4059456.tar.bz2
otp-995daeae6917c1369ef4ea7a620c9488c4059456.zip
Changed iolist() to iodata()
ssl:send/2 takes iodata() as a second argument. erlang:iolist_to_binary should really be called erlang:iodata_to_binary which caused the mismatch in the first place.
Diffstat (limited to 'lib/ssl/src/ssl_connection.erl')
-rw-r--r--lib/ssl/src/ssl_connection.erl4
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/ssl/src/ssl_connection.erl b/lib/ssl/src/ssl_connection.erl
index 574e1e9468..0a86e9bd29 100644
--- a/lib/ssl/src/ssl_connection.erl
+++ b/lib/ssl/src/ssl_connection.erl
@@ -107,12 +107,14 @@
%%====================================================================
%%--------------------------------------------------------------------
--spec send(pid(), iolist()) -> ok | {error, reason()}.
+-spec send(pid(), iodata()) -> ok | {error, reason()}.
%%
%% Description: Sends data over the ssl connection
%%--------------------------------------------------------------------
send(Pid, Data) ->
sync_send_all_state_event(Pid, {application_data,
+ %% iolist_to_binary should really
+ %% be called iodata_to_binary()
erlang:iolist_to_binary(Data)}, infinity).
%%--------------------------------------------------------------------