diff options
author | Simo Sorce <ssorce@redhat.com> | 2011-12-09 17:20:26 -0500 |
---|---|---|
committer | Simo Sorce <ssorce@redhat.com> | 2011-12-09 17:20:26 -0500 |
commit | 00d1e6903ceb6fc1ae5672f44ef13711d1a6d8a4 (patch) | |
tree | 285c74a558ba4eabc07a352e613bf8a552ed4bbd | |
parent | 8657a3e3e3503a1710180fd1492d2831072ab1cc (diff) | |
download | gss-proxy-00d1e6903ceb6fc1ae5672f44ef13711d1a6d8a4.tar.gz gss-proxy-00d1e6903ceb6fc1ae5672f44ef13711d1a6d8a4.tar.xz gss-proxy-00d1e6903ceb6fc1ae5672f44ef13711d1a6d8a4.zip |
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 :)
-rw-r--r-- | gss-proxy.x | 4 |
1 files 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 { |