From 73ed88df350c0e307fcf7402be12170c22f2227e Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Thu, 5 Jan 2012 14:59:20 +0100 Subject: [PATCH] s3:gse: MIT krb5 1.8.1 has a bug in gss_wrap_iov() gss_krb5int_make_seal_token_v3_iov() doesn't set '*conf_state'. metze --- source3/librpc/crypto/gse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/librpc/crypto/gse.c b/source3/librpc/crypto/gse.c index c7dfc399380..9eaef5aa44d 100644 --- a/source3/librpc/crypto/gse.c +++ b/source3/librpc/crypto/gse.c @@ -782,7 +782,7 @@ NTSTATUS gse_seal(TALLOC_CTX *mem_ctx, struct gse_context *gse_ctx, OM_uint32 gss_min, gss_maj; gss_iov_buffer_desc iov[2]; int req_seal = 1; /* setting to 1 means we request sign+seal */ - int sealed; + int sealed = 1; NTSTATUS status; /* allocate the memory ourselves so we do not need to talloc_memdup */ -- 2.34.1