25
1
mirror of https://github.com/processone/ejabberd.git synced 2024-10-19 15:32:08 +02:00

* src/ejabberd_s2s_out.erl: Bugfix

SVN Revision: 1069
This commit is contained in:
Alexey Shchepin 2007-12-14 09:12:14 +00:00
parent 348427fab0
commit b14c88aaaf
2 changed files with 6 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2007-12-14 Alexey Shchepin <alexey@process-one.net>
* src/ejabberd_s2s_out.erl: Bugfix
2007-12-12 Christophe Romain <christophe.romain@process-one.net> 2007-12-12 Christophe Romain <christophe.romain@process-one.net>
* src/mod_pubsub/mod_pubsub.erl: presence handler bugfix * src/mod_pubsub/mod_pubsub.erl: presence handler bugfix

View File

@ -152,7 +152,7 @@ init([From, Server, Type]) ->
server = Server, server = Server,
new = New, new = New,
verify = Verify, verify = Verify,
timer = Timer}, ?FSMTIMEOUT}. timer = Timer}}.
%%---------------------------------------------------------------------- %%----------------------------------------------------------------------
%% Func: StateName/2 %% Func: StateName/2
@ -210,7 +210,7 @@ open_socket(timeout, StateData) ->
[StateData#state.myname, StateData#state.server]), [StateData#state.myname, StateData#state.server]),
{stop, normal, StateData}; {stop, normal, StateData};
open_socket(_, StateData) -> open_socket(_, StateData) ->
{next_state, open_socket, StateData, ?FSMTIMEOUT}. {next_state, open_socket, StateData}.
%%---------------------------------------------------------------------- %%----------------------------------------------------------------------
open_socket1(Addr, Port) -> open_socket1(Addr, Port) ->