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
This commit is contained in:
Love Hörnquist Åstrand
2003-09-22 21:48:35 +00:00
parent 7c533af43a
commit ee68a1f229
2 changed files with 4 additions and 4 deletions

View File

@@ -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];

View File

@@ -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];