(gss_wrap_size_limit): use existing function

From: Luke Howard <lukeh@PADL.COM>


git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@12834 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2003-09-16 12:00:25 +00:00
parent 45984d2d2c
commit e2a057b359
2 changed files with 6 additions and 4 deletions

View File

@@ -116,8 +116,9 @@ gss_wrap_size_limit (
break;
default :
#ifdef HAVE_GSSAPI_CFX
ret = wrap_size_cfx(minor_status, context_handle, conf_req_flag,
qop_req, req_output_size, max_input_size, key);
ret = _gssapi_wrap_size_cfx(minor_status, context_handle,
conf_req_flag, qop_req,
req_output_size, max_input_size, key);
#else
*minor_status = (OM_uint32)KRB5_PROG_ETYPE_NOSUPP;
ret = GSS_S_FAILURE;

View File

@@ -116,8 +116,9 @@ gss_wrap_size_limit (
break;
default :
#ifdef HAVE_GSSAPI_CFX
ret = wrap_size_cfx(minor_status, context_handle, conf_req_flag,
qop_req, req_output_size, max_input_size, key);
ret = _gssapi_wrap_size_cfx(minor_status, context_handle,
conf_req_flag, qop_req,
req_output_size, max_input_size, key);
#else
*minor_status = (OM_uint32)KRB5_PROG_ETYPE_NOSUPP;
ret = GSS_S_FAILURE;