ret_flags should be an int based on the prototype of
authorTheodore Tso <tytso@mit.edu>
Fri, 3 Feb 1995 11:22:04 +0000 (11:22 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 3 Feb 1995 11:22:04 +0000 (11:22 +0000)
gss_accept_sec_context

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

src/appl/gss-sample/ChangeLog
src/appl/gss-sample/gss-server.c

index f2c58912d5bfa35daffd324ca24d82dd8f3da09e..38bfb7a51010eeb27f9dbf79c03fae5dad1f19f2 100644 (file)
@@ -1,3 +1,8 @@
+Fri Feb  3 06:21:02 1995  Theodore Y. Ts'o  (tytso@dcl)
+
+       * gss-server.c: ret_flags should be an int based on the prototype
+               of gss_accept_sec_context.
+
 Wed Oct 19 12:32:41 1994  Theodore Y. Ts'o  (tytso@dcl)
 
        * Makefile.in: Obey CCOPTS in CFLAGS declaration
index 4fd14c573a491d2f489c3e26c14673dd5b8385a5..7050de84a64783b88307cd271ed9fddefa872101 100644 (file)
@@ -302,7 +302,8 @@ int server_establish_context(s, server_creds, context, client_name)
      gss_buffer_desc send_tok, recv_tok;
      gss_name_t client;
      gss_OID doid;
-     OM_uint32 maj_stat, min_stat, ret_flags;
+     OM_uint32 maj_stat, min_stat;
+     int ret_flags;
 
      *context = GSS_C_NO_CONTEXT;