gss-client.c: remove extraneous parameters from client_establish_context()
authorJeffrey Altman <jaltman@secure-endpoints.com>
Tue, 10 Feb 2004 19:35:49 +0000 (19:35 +0000)
committerJeffrey Altman <jaltman@secure-endpoints.com>
Tue, 10 Feb 2004 19:35:49 +0000 (19:35 +0000)
ticket: new
target_version: 1.3.2
tags: pullup

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

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

index 01b2d975f06d8d39c335c9853d1851e68e0b88af..fae96843211d71c330b9f12f0fc4fcc6129b3b2c 100644 (file)
@@ -1,3 +1,8 @@
+2004-02-10  Jeffrey Altman <jaltman@mit.edu>
+
+    * gss-client.c: Remove extraneous parameters from 
+      client_establish_context()
+
 2004-02-06  Jeffrey Altman <jaltman@mit.edu>
 
     * Update usage() for gss-client
index c3fce2db1bba39826c5bbc7682e6ccd6fa949e83..bd1dc46ff5706b1e11460716594a5e95113f7ad4 100644 (file)
@@ -107,11 +107,12 @@ static int connect_to_server(host, port)
  *
  * Arguments:
  *
- *     s               (r) an established TCP connection to the service
- *     service_name    (r) the ASCII service name of the service
+ *     s                   (r) an established TCP connection to the service
+ *     service_name(r) the ASCII service name of the service
  *     gss_flags       (r) GSS-API delegation flag (if any)
  *     auth_flag       (r) whether to actually do authentication
- *     oid             (r) OID of the mechanism to use
+ *  v1_format   (r) whether the v1 sample protocol should be used
+ *     oid                 (r) OID of the mechanism to use
  *     context         (w) the established GSS-API context
  *     ret_flags       (w) the returned flags from init_sec_context
  *
@@ -130,8 +131,7 @@ static int connect_to_server(host, port)
  * and -1 is returned.
  */
 static int client_establish_context(s, service_name, gss_flags, auth_flag,
-                                   v1_format, oid, gss_context, ret_flags, replay_flag,
-                    seq_flag, mutual_flag)
+                                   v1_format, oid, gss_context, ret_flags)
      int s;
      char *service_name;
      gss_OID oid;