]> granicus.if.org Git - ejabberd/commitdiff
ejabberd_s2s_in: Fix indentation
authorHolger Weiss <holger@zedat.fu-berlin.de>
Mon, 15 Oct 2018 21:03:53 +0000 (23:03 +0200)
committerHolger Weiss <holger@zedat.fu-berlin.de>
Mon, 15 Oct 2018 21:03:53 +0000 (23:03 +0200)
src/ejabberd_s2s_in.erl

index e58294a16f445b53103e9846126bc0b4726e1a99..91fadb696e73b4d142012eaf3156e919a1906b76 100644 (file)
@@ -188,7 +188,7 @@ handle_auth_success(RServer, Mech, _AuthModule,
                     State0#{auth_domains => AuthDomains1};
                 false ->
                     State
-          end,
+            end,
     ejabberd_hooks:run_fold(s2s_in_auth_result, ServerHost, State1, [true, RServer]).
 
 handle_auth_failure(RServer, Mech, Reason,
@@ -221,7 +221,7 @@ handle_authenticated_packet(Pkt0, #{ip := {IP, _}} = State) ->
            case Pkt1 of
                drop -> ok;
                _ -> ejabberd_router:route(Pkt1)
-    end,
+           end,
            State2;
        {error, Err} ->
            send(State, Err)
@@ -249,9 +249,9 @@ init([State, Opts]) ->
                    (_) -> false
                 end, Opts),
     TLSOpts2 = case proplists:get_bool(tls_compression, Opts) of
-                   false -> [compression_none | TLSOpts1];
-                   true -> TLSOpts1
-    end,
+                  false -> [compression_none | TLSOpts1];
+                  true -> TLSOpts1
+              end,
     Timeout = ejabberd_config:negotiation_timeout(),
     State1 = State#{tls_options => TLSOpts2,
                    auth_domains => sets:new(),