* 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
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.