summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Altman <jaltman@secure-endpoints.com>2004-02-10 19:35:49 +0000
committerJeffrey Altman <jaltman@secure-endpoints.com>2004-02-10 19:35:49 +0000
commitaa634f70d5269335446e9d5c451a9d503cf57328 (patch)
tree0e850e7f14f354506a89d460cd8ef8035f4575d4
parente706ad39d55dc8e56ae6457a99828c05bb5223ec (diff)
downloadkrb5-aa634f70d5269335446e9d5c451a9d503cf57328.tar.gz
krb5-aa634f70d5269335446e9d5c451a9d503cf57328.tar.xz
krb5-aa634f70d5269335446e9d5c451a9d503cf57328.zip
gss-client.c: remove extraneous parameters from client_establish_context()
ticket: new target_version: 1.3.2 tags: pullup git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@16052 dc483132-0cff-0310-8789-dd5450dbe970
-rw-r--r--src/appl/gss-sample/ChangeLog5
-rw-r--r--src/appl/gss-sample/gss-client.c10
2 files changed, 10 insertions, 5 deletions
diff --git a/src/appl/gss-sample/ChangeLog b/src/appl/gss-sample/ChangeLog
index 01b2d975f..fae968432 100644
--- a/src/appl/gss-sample/ChangeLog
+++ b/src/appl/gss-sample/ChangeLog
@@ -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
diff --git a/src/appl/gss-sample/gss-client.c b/src/appl/gss-sample/gss-client.c
index c3fce2db1..bd1dc46ff 100644
--- a/src/appl/gss-sample/gss-client.c
+++ b/src/appl/gss-sample/gss-client.c
@@ -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;