* src/ejabberd_config.erl: Bugfix

SVN Revision: 372
This commit is contained in:
Alexey Shchepin 2005-07-03 00:16:34 +00:00
parent d6d51b0fb7
commit b58c0b7b23
2 changed files with 6 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2005-07-03 Alexey Shchepin <alexey@sevcom.net>
* src/ejabberd_config.erl: Bugfix
2005-06-30 Alexey Shchepin <alexey@sevcom.net>
* src/mod_offline.erl: Bugfix

View File

@ -101,6 +101,8 @@ process_term(Term, State) ->
State;
{hosts, Hosts} ->
State;
{listen, Val} ->
add_option(listen, Val, State);
{Opt, Val} ->
lists:foldl(fun(Host, S) -> process_host_term(Term, Host, S) end,
State, State#state.hosts)