aboutsummaryrefslogtreecommitdiff
path: root/src/ejabberd_auth_odbc.erl
diff options
context:
space:
mode:
authorBadlop <badlop@process-one.net>2011-08-16 00:26:49 +0200
committerBadlop <badlop@process-one.net>2011-08-16 00:26:49 +0200
commit1ee6eae684c126b486c70a3cadd58fa282f517ad (patch)
tree9e15e7960fa6d3ca0b90fcf3e23ba158bf2d6535 /src/ejabberd_auth_odbc.erl
parentIndicate license and copyright (thanks to Stephen Röttger)(EJAB-1196) (diff)
Fix and improve support for SCRAM auth method (EJAB-1196)
Diffstat (limited to 'src/ejabberd_auth_odbc.erl')
-rw-r--r--src/ejabberd_auth_odbc.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ejabberd_auth_odbc.erl b/src/ejabberd_auth_odbc.erl
index 60e6b8059..e2d43a449 100644
--- a/src/ejabberd_auth_odbc.erl
+++ b/src/ejabberd_auth_odbc.erl
@@ -43,7 +43,7 @@
is_user_exists/2,
remove_user/2,
remove_user/3,
- storage_type/0,
+ store_type/0,
plain_password_required/0
]).
@@ -58,7 +58,7 @@ start(_Host) ->
plain_password_required() ->
false.
-storage_type() ->
+store_type() ->
plain.
%% @spec (User, Server, Password) -> true | false | {error, Error}