24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-14 22:00:16 +02:00

* src/ejabberd_check.erl: Fixed missing clause (EJAB-533).

SVN Revision: 1216
This commit is contained in:
Mickaël Rémond 2008-02-29 12:23:06 +00:00
parent 45074f5349
commit 739a504bd5

View File

@ -97,4 +97,6 @@ get_db_used() ->
check_odbc_option(odbc) ->
true;
check_odbc_option(AuthMethods) when is_list(AuthMethods) ->
lists:member(odbc, AuthMethods).
lists:member(odbc, AuthMethods);
check_odbc_option(_) ->
false.