Change the input type of do_mutual to be OM_int32 instead of an int,
authorTheodore Tso <tytso@mit.edu>
Wed, 25 Oct 1995 19:43:32 +0000 (19:43 +0000)
committerTheodore Tso <tytso@mit.edu>
Wed, 25 Oct 1995 19:43:32 +0000 (19:43 +0000)
to prevent lossage under windows, since the passed in type size is a
OM_int32.

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

src/lib/gssapi/krb5/ChangeLog
src/lib/gssapi/krb5/init_sec_context.c

index 76050895b08f70b4898f1420d810a4236cd2a439..aa86d260e7f48b4825f9ea9a651a88d340e65997 100644 (file)
@@ -1,3 +1,10 @@
+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
+               do_mutual to be OM_int32 instead of an int, to prevent
+               lossage under windows, since the passed in type size is a
+               OM_int32.
+
 Fri Oct  6 22:02:24 1995  Theodore Y. Ts'o  <tytso@dcl>
 
        * Makefile.in: Remove ##DOS!include of config/windows.in.
index 9de905e8cf3a39c065cfede88847cde6767a3225..528cef2a1397b7c5d18799f71a4cb375ff183d8f 100644 (file)
@@ -32,7 +32,7 @@ make_ap_req(context, auth_context, cred, server, endtime, chan_bindings,
     krb5_principal server;
     krb5_timestamp *endtime;
     gss_channel_bindings_t chan_bindings;
-    int do_mutual;
+    OM_uint32 do_mutual;
     krb5_flags *flags;
     gss_buffer_t token;
 {