CCO: gem_fsm/gen_fsm spelling mistake

This commit is contained in:
Harald Welte 2012-01-30 21:18:00 +01:00
parent 7943c341b2
commit bc4c9669ae
1 changed files with 3 additions and 3 deletions

View File

@ -346,7 +346,7 @@ process_rx_component(ISMs, C={invoke, #'Invoke'{invokeId=InvId}}) ->
end,
Prim = asn_rec_to_uprim(C),
ISM = lists:keyfind(InvId, 1, ISMs),
gem_fsm:send_event(ISM, Prim);
gen_fsm:send_event(ISM, Prim);
process_rx_component(ISMs, C={reject, #'Reject'{invokeId=InvId,
problem=Problem}}) ->
ISM = lists:keyfind(InvId, 1, ISMs),
@ -360,14 +360,14 @@ process_rx_component(ISMs, C={reject, #'Reject'{invokeId=InvId,
% FIXME: decide on TC-U-REJECT or TC-R-REJECT
Prim = asn_rec_to_uprim(C),
ISM = lists:keyfind(InvId, 1, ISMs),
gem_fsm:send_event(ISM, Prim);
gen_fsm:send_event(ISM, Prim);
process_rx_component(ISMs, Comp) ->
% syntax error?
InvId = get_invoke_id_from_comp(Comp),
ISM = lists:keyfind(InvId, 1, ISMs),
% FIXME: ISM active (No -> 6)
Prim = asn_rec_to_uprim(Comp),
gem_fsm:send_event(ISM, Prim).
gen_fsm:send_event(ISM, Prim).
add_components_to_state(State = #state{components=CompOld}, CompNew) when is_list(CompNew) ->
State#state{components = CompOld ++ CompNew};