From 00d1e6903ceb6fc1ae5672f44ef13711d1a6d8a4 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Fri, 9 Dec 2011 17:20:26 -0500 Subject: Rename input_chan_bindings Use a slightly more readbale and short name. A comment + the type are sufficient to identify the function, without inflicting overly long names on developers :) --- gss-proxy.x | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gss-proxy.x b/gss-proxy.x index 331f124..c301059 100644 --- a/gss-proxy.x +++ b/gss-proxy.x @@ -330,7 +330,7 @@ struct gssx_arg_init_sec_context { gssx_OID mech_type; gssx_uint64 req_flags; gssx_time time_req; - gssx_cb *input_chan_bindings; + gssx_cb *input_cb; /* input channel bindings */ gssx_buffer *input_token; gssx_typed_hole extensions<>; }; @@ -346,7 +346,7 @@ struct gssx_arg_accept_sec_context { gssx_ctx *context_handle; gssx_cred *cred_handle; /* absent -> GSS_C_NO_CREDENTIAL */ gssx_buffer input_token; - gssx_cb *input_chan_bindings; + gssx_cb *input_cb; /* input channel bindings */ gssx_typed_hole extensions<>; }; struct gssx_res_accept_sec_context { -- cgit