diff options
Diffstat (limited to 'net/sunrpc/auth_gss/gss_krb5_wrap.c')
| -rw-r--r-- | net/sunrpc/auth_gss/gss_krb5_wrap.c | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/net/sunrpc/auth_gss/gss_krb5_wrap.c b/net/sunrpc/auth_gss/gss_krb5_wrap.c index 107c4528654..88edec929d7 100644 --- a/net/sunrpc/auth_gss/gss_krb5_wrap.c +++ b/net/sunrpc/auth_gss/gss_krb5_wrap.c @@ -574,6 +574,8 @@ gss_unwrap_kerberos_v2(struct krb5_ctx *kctx, int offset, struct xdr_buf *buf)  	buf->head[0].iov_len -= GSS_KRB5_TOK_HDR_LEN + headskip;  	buf->len -= GSS_KRB5_TOK_HDR_LEN + headskip; +	/* Trim off the checksum blob */ +	xdr_buf_trim(buf, GSS_KRB5_TOK_HDR_LEN + tailskip);  	return GSS_S_COMPLETE;  }  |