diff options
author | Kostis Sagonas <[email protected]> | 2010-03-20 09:52:11 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-03-20 09:52:11 +0000 |
commit | bbafff92c639e227d9be204ed956f895d7c364e7 (patch) | |
tree | 759a777a33bcf60b1fceec943c4fbf3de1233bb9 /lib | |
parent | c9f480b49256e1f7869265e4346c594fa4f90fd5 (diff) | |
download | otp-bbafff92c639e227d9be204ed956f895d7c364e7.tar.gz otp-bbafff92c639e227d9be204ed956f895d7c364e7.tar.bz2 otp-bbafff92c639e227d9be204ed956f895d7c364e7.zip |
Add missing type in erlang:decode_packet/3
Diffstat (limited to 'lib')
-rw-r--r-- | lib/hipe/cerl/erl_bif_types.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/hipe/cerl/erl_bif_types.erl b/lib/hipe/cerl/erl_bif_types.erl index 38342870e5..81ca837e45 100644 --- a/lib/hipe/cerl/erl_bif_types.erl +++ b/lib/hipe/cerl/erl_bif_types.erl @@ -4534,7 +4534,7 @@ t_decode_packet_option() -> t_tuple([t_atom('line_length'), t_non_neg_integer()])]). t_decode_packet_type() -> - t_sup(t_inet_setoption_packettype(), t_atom('httph')). + t_sup([t_inet_setoption_packettype(), t_atom('httph'), t_atom('httph_bin')]). t_dist_exit() -> t_sup([t_atom('kill'), t_atom('noconnection'), t_atom('normal')]). |