24
1
mirror of https://github.com/processone/ejabberd.git synced 2024-06-02 21:17:12 +02:00

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

SVN Revision: 1215
This commit is contained in:
Mickaël Rémond 2008-02-29 12:21:15 +00:00
parent 8283a9faf3
commit 993ffe9096

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.