1
0
Fork 0
mirror of https://github.com/processone/ejabberd synced 2025-10-03 09:49:18 +02:00

Merge pull request #1502 from lemenkov/ignore_output_val

No need to explicitly return ok here
This commit is contained in:
Evgeny Khramtsov 2017-01-30 18:15:25 +04:00 committed by GitHub
commit 649d3b753b
3 changed files with 3 additions and 6 deletions

View file

@ -35,8 +35,7 @@
-record(state, {server = <<"">> :: binary()}). -record(state, {server = <<"">> :: binary()}).
start(_Opts) -> start(_Opts) ->
cyrsasl:register_mechanism(<<"ANONYMOUS">>, ?MODULE, plain), cyrsasl:register_mechanism(<<"ANONYMOUS">>, ?MODULE, plain).
ok.
stop() -> ok. stop() -> ok.

View file

@ -36,8 +36,7 @@
-export_type([error_reason/0]). -export_type([error_reason/0]).
start(_Opts) -> start(_Opts) ->
cyrsasl:register_mechanism(<<"X-OAUTH2">>, ?MODULE, plain), cyrsasl:register_mechanism(<<"X-OAUTH2">>, ?MODULE, plain).
ok.
stop() -> ok. stop() -> ok.

View file

@ -36,8 +36,7 @@
-export_type([error_reason/0]). -export_type([error_reason/0]).
start(_Opts) -> start(_Opts) ->
cyrsasl:register_mechanism(<<"PLAIN">>, ?MODULE, plain), cyrsasl:register_mechanism(<<"PLAIN">>, ?MODULE, plain).
ok.
stop() -> ok. stop() -> ok.