* mglueP.h (gss_config): Change int fields to OM_uint32 to match
authorEzra Peisach <epeisach@mit.edu>
Sat, 24 Feb 1996 18:47:17 +0000 (18:47 +0000)
committerEzra Peisach <epeisach@mit.edu>
Sat, 24 Feb 1996 18:47:17 +0000 (18:47 +0000)
arguments to procedure calls in gss_init_sec_context,
gss_accept_sec_context, and gss_display_status.

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

src/lib/gssapi/mechglue/ChangeLog
src/lib/gssapi/mechglue/mglueP.h

index 7ec33e1360c61e1cbd38e6ea9627c1fe648e439c..8a70b6986280f24d45fd51d7554876b98dfe034b 100644 (file)
@@ -1,3 +1,9 @@
+Sat Feb 24 12:21:03 1996  Ezra Peisach  <epeisach@kangaroo.mit.edu>
+
+       * mglueP.h (gss_config): Change int fields to OM_uint32 to match
+               arguments to procedure calls in gss_init_sec_context,
+               gss_accept_sec_context, and gss_display_status.
+
 Sat Feb 24 00:00:27 1996  Theodore Y. Ts'o  <tytso@dcl>
 
        * g_imp_name.c (gss_import_name): If the user passes in a
index d4a2715342011cf16accea0695fdaef6e7feda54..12cf51112b40517384cff83df5336e53745026af 100644 (file)
@@ -110,13 +110,13 @@ typedef struct gss_config {
                    gss_ctx_id_t*,              /* context_handle */
                    gss_name_t,                 /* target_name */
                    gss_OID,                    /* mech_type */
-                   int,                        /* req_flags */
+                   OM_uint32,                  /* req_flags */
                    OM_uint32,                  /* time_req */
                    gss_channel_bindings_t,     /* input_chan_bindings */
                    gss_buffer_t,               /* input_token */
                    gss_OID*,                   /* actual_mech_type */
                    gss_buffer_t,               /* output_token */
-                   int*,                       /* ret_flags */
+                   OM_uint32*,                 /* ret_flags */
                    OM_uint32*                  /* time_rec */
                    ));
     OM_uint32       (*gss_accept_sec_context)
@@ -130,7 +130,7 @@ typedef struct gss_config {
                    gss_name_t*,                /* src_name */
                    gss_OID*,                   /* mech_type */
                    gss_buffer_t,               /* output_token */
-                   int*,                       /* ret_flags */
+                   OM_uint32*,                 /* ret_flags */
                    OM_uint32*,                 /* time_rec */
                    gss_cred_id_t*              /* delegated_cred_handle */
                    ));
@@ -201,7 +201,7 @@ typedef struct gss_config {
                    OM_uint32,          /* status_value */
                    int,                /* status_type */
                    gss_OID,            /* mech_type */
-                   int*,               /* message_context */
+                   OM_uint32*,         /* message_context */
                    gss_buffer_t        /* status_string */
                    ));
     OM_uint32       (*gss_indicate_mechs)