ISUP codec: fix another encoding bug regarding susp_res_ind

This commit is contained in:
Harald Welte 2011-03-11 16:48:47 +01:00
parent 39eae2db77
commit 781d98e547
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ parse_isup_msgt(Msgt, Bin) when Msgt == ?ISUP_MSGT_RES; Msgt == ?ISUP_MSGT_SUS -
<<SuspResInd:8, Remain/binary>> = Bin,
FixedOpts = [{susp_res_ind, SuspResInd}],
Opts = parse_isup_opts_ptr(Remain),
[FixedOpts|Opts];
FixedOpts ++ Opts;
% Table C-23
parse_isup_msgt(M, <<>>) when
M == ?ISUP_MSGT_BLO;