Fixed token type numbers so they conform with the protocol spec. Paul
authorTheodore Tso <tytso@mit.edu>
Sat, 18 Nov 1995 03:20:15 +0000 (03:20 +0000)
committerTheodore Tso <tytso@mit.edu>
Sat, 18 Nov 1995 03:20:15 +0000 (03:20 +0000)
Park didn't realize that he wasn't allowed to change these
willy-nilly...

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@7115 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/gssapi/krb5/ChangeLog
src/lib/gssapi/krb5/gssapiP_krb5.h

index aa86d260e7f48b4825f9ea9a651a88d340e65997..b829403407e51de207c78c579bd67d49b31955ea 100644 (file)
@@ -1,3 +1,10 @@
+Thu Nov 16 17:04:00 1995    <tytso@rsts-11.mit.edu>
+
+       * gssapiP_krb5.h (KG_TOK_MIC_MSG, KG_TOK_WRAP_MSG, KG_DEL_CTX):
+               Fixed token type numbers so they conform with the protocol
+               spec.  Paul Park didn't realize that he wasn't allowed to
+               change these willy-nilly...
+
 Wed Oct 25 15:38:00 1995  Theodore Y. Ts'o  <tytso@dcl>
 
        * init_sec_context.c (make_ap_req): Change the input type of
index 6b350e2932632e146fd865f0accb28412479d7bd..7323149ca3c540580d3771c1331f9e2243c49d38 100644 (file)
@@ -52,9 +52,9 @@
 #define KG_TOK_CTX_ERROR       0x0300
 #define KG_TOK_SIGN_MSG                0x0101
 #define KG_TOK_SEAL_MSG                0x0201
-#define        KG_TOK_MIC_MSG          0x0102
+#define        KG_TOK_MIC_MSG          0x0101
 #define        KG_TOK_WRAP_MSG         0x0202
-#define KG_TOK_DEL_CTX         0x0103
+#define KG_TOK_DEL_CTX         0x0102
 
 /** internal types **/
 
@@ -474,7 +474,8 @@ PROTOTYPE( (OM_uint32 *,            /* minor_status */
           ));
 
 OM_uint32 krb5_gss_inquire_names_for_mech
-PROTOTYPE( (OM_uint32 *,               /* minor_status */
+PROTOTYPE( (void *,
+           OM_uint32 *,                /* minor_status */
            gss_OID,                    /* mechanism */
            gss_OID_set *               /* name_types */
           ));