summaryrefslogtreecommitdiff
path: root/auth
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2019-01-14 13:44:40 +0100
committerAndreas Schneider <asn@cryptomilk.org>2019-01-28 10:29:21 +0100
commit14c7d19b6302cfa42eba5bdebb1d588d6c148f80 (patch)
treef9bad09b07eabec0b6d4b91e155dc431f4c2d9db /auth
parent246f7dd7623acdda9649fc7e64f4fb245088c8bb (diff)
downloadsamba-14c7d19b6302cfa42eba5bdebb1d588d6c148f80.tar.gz
auth:gensec: Use C99 initializer in schannel
Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Douglas Bagnall <douglas.bagnall@catalyst.net.nz>
Diffstat (limited to 'auth')
-rw-r--r--auth/gensec/schannel.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/auth/gensec/schannel.c b/auth/gensec/schannel.c
index 71e9afdf48e..364a0fcc186 100644
--- a/auth/gensec/schannel.c
+++ b/auth/gensec/schannel.c
@@ -504,7 +504,9 @@ static NTSTATUS schannel_update_internal(struct gensec_security *gensec_security
struct schannel_state);
NTSTATUS status;
enum ndr_err_code ndr_err;
- struct NL_AUTH_MESSAGE bind_schannel = {};
+ struct NL_AUTH_MESSAGE bind_schannel = {
+ .Flags = 0,
+ };
struct NL_AUTH_MESSAGE bind_schannel_ack;
struct netlogon_creds_CredentialState *creds;
const char *workstation;