* 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
1 changed files with 3 additions and 1 deletions

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.