diff options
author | Micael Karlberg <[email protected]> | 2013-04-10 10:39:40 +0200 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2013-04-10 10:39:40 +0200 |
commit | bb7ba9f1e70a49310efc872f528d91d2a5f4f661 (patch) | |
tree | ea554d06545c2b836df1cdc6f150a5f9b963fe1f /lib/megaco/src/flex | |
parent | fab2332f524c81a3e0186928cf3b64ee3190e259 (diff) | |
download | otp-bb7ba9f1e70a49310efc872f528d91d2a5f4f661.tar.gz otp-bb7ba9f1e70a49310efc872f528d91d2a5f4f661.tar.bz2 otp-bb7ba9f1e70a49310efc872f528d91d2a5f4f661.zip |
Assign correct version and updated release notes accordingly.
Also added (and cleaned up) appup.
Diffstat (limited to 'lib/megaco/src/flex')
-rw-r--r-- | lib/megaco/src/flex/megaco_flex_scanner_handler.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/megaco/src/flex/megaco_flex_scanner_handler.erl b/lib/megaco/src/flex/megaco_flex_scanner_handler.erl index 420202134e..28333ab1d0 100644 --- a/lib/megaco/src/flex/megaco_flex_scanner_handler.erl +++ b/lib/megaco/src/flex/megaco_flex_scanner_handler.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 2001-2010. All Rights Reserved. +%% Copyright Ericsson AB 2001-2013. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -181,11 +181,11 @@ terminate(_Reason, _S) -> %% Returns: {ok, NewState} %%---------------------------------------------------------------------- -code_change({down, _Vsn}, #state{conf = Conf} = State, downgrade_to_pre_3_13_1) -> +code_change({down, _Vsn}, #state{conf = Conf} = State, downgrade_to_pre_3_14_3) -> NewPorts = bump_flex_scanner(Conf), {ok, State#state{conf = {flex, NewPorts}}}; -code_change(_Vsn, #state{conf = Conf} = State, upgrade_from_pre_3_13_1) -> +code_change(_Vsn, #state{conf = Conf} = State, upgrade_from_pre_3_14_2) -> NewPorts = bump_flex_scanner(Conf), {ok, State#state{conf = {flex, NewPorts}}}; |