From ee68a1f229b8cb8f192e752e17deb39f2faa1204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Mon, 22 Sep 2003 21:48:35 +0000 Subject: [PATCH] correct token ID for wrap tokens, were accidentally swapped with delete tokens git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12905 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/gssapi/cfx.h | 4 ++-- lib/gssapi/krb5/cfx.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/gssapi/cfx.h b/lib/gssapi/cfx.h index e48c9d694..de94bdec9 100644 --- a/lib/gssapi/cfx.h +++ b/lib/gssapi/cfx.h @@ -47,7 +47,7 @@ typedef struct gss_cfx_mic_token_desc_struct { } gss_cfx_mic_token_desc, *gss_cfx_mic_token; typedef struct gss_cfx_wrap_token_desc_struct { - u_char TOK_ID[2]; /* 05 04 */ + u_char TOK_ID[2]; /* 04 05 */ u_char Flags; u_char Filler; u_char EC[2]; @@ -56,7 +56,7 @@ typedef struct gss_cfx_wrap_token_desc_struct { } gss_cfx_wrap_token_desc, *gss_cfx_wrap_token; typedef struct gss_cfx_delete_token_desc_struct { - u_char TOK_ID[2]; /* 04 05 */ + u_char TOK_ID[2]; /* 05 04 */ u_char Flags; u_char Filler[5]; u_char SND_SEQ[8]; diff --git a/lib/gssapi/krb5/cfx.h b/lib/gssapi/krb5/cfx.h index e48c9d694..de94bdec9 100644 --- a/lib/gssapi/krb5/cfx.h +++ b/lib/gssapi/krb5/cfx.h @@ -47,7 +47,7 @@ typedef struct gss_cfx_mic_token_desc_struct { } gss_cfx_mic_token_desc, *gss_cfx_mic_token; typedef struct gss_cfx_wrap_token_desc_struct { - u_char TOK_ID[2]; /* 05 04 */ + u_char TOK_ID[2]; /* 04 05 */ u_char Flags; u_char Filler; u_char EC[2]; @@ -56,7 +56,7 @@ typedef struct gss_cfx_wrap_token_desc_struct { } gss_cfx_wrap_token_desc, *gss_cfx_wrap_token; typedef struct gss_cfx_delete_token_desc_struct { - u_char TOK_ID[2]; /* 04 05 */ + u_char TOK_ID[2]; /* 05 04 */ u_char Flags; u_char Filler[5]; u_char SND_SEQ[8];