heimdal:lib/gssapi/krb5: fix indentation in _gk_wrap_iov()
authorStefan Metzmacher <metze@samba.org>
Thu, 18 Jun 2015 10:20:26 +0000 (12:20 +0200)
committerAndrew Bartlett <abartlet@samba.org>
Tue, 23 Jun 2015 23:03:16 +0000 (01:03 +0200)
Now it matches _gk_unwrap_iov() and _gk_wrap_iov_length().

Signed-off-by: Stefan Metzmacher <metze@samba.org>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
source4/heimdal/lib/gssapi/krb5/aeap.c

index 47913e4aec03244ef85004dde0792be290c49232..87ca06d450a0389f8cd906f4c5b7307d309a7903 100644 (file)
@@ -44,15 +44,15 @@ _gk_wrap_iov(OM_uint32 * minor_status,
             gss_iov_buffer_desc *iov,
             int iov_count)
 {
-  const gsskrb5_ctx ctx = (const gsskrb5_ctx) context_handle;
-  krb5_context context;
+    const gsskrb5_ctx ctx = (const gsskrb5_ctx) context_handle;
+    krb5_context context;
 
-  GSSAPI_KRB5_INIT (&context);
+    GSSAPI_KRB5_INIT (&context);
 
-  if (ctx->more_flags & IS_CFX)
-      return _gssapi_wrap_cfx_iov(minor_status, ctx, context,
-                                 conf_req_flag, conf_state,
-                                 iov, iov_count);
+    if (ctx->more_flags & IS_CFX)
+        return _gssapi_wrap_cfx_iov(minor_status, ctx, context,
+                                   conf_req_flag, conf_state,
+                                   iov, iov_count);
 
     return GSS_S_FAILURE;
 }