prefix all sequence symbols with _, they are not part of the GSS-API api. By comment from Wynn Wilkes <wynnw@vintela.com>

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@14989 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-04-27 17:51:27 +00:00
parent 758edc3a6b
commit d0443e2058
22 changed files with 100 additions and 98 deletions

View File

@@ -197,10 +197,10 @@ gss_import_sec_context (
gsskrb5_is_cfx(*context_handle, &is_cfx);
ret = gssapi_msg_order_create(minor_status,
&(*context_handle)->order,
gssapi_msg_order_f((*context_handle)->flags),
0, 0, is_cfx);
ret = _gssapi_msg_order_create(minor_status,
&(*context_handle)->order,
_gssapi_msg_order_f((*context_handle)->flags),
0, 0, is_cfx);
if (ret)
goto failure;
@@ -219,7 +219,7 @@ failure:
if (remotep)
krb5_free_address (gssapi_krb5_context, remotep);
if((*context_handle)->order)
gssapi_msg_order_destroy(&(*context_handle)->order);
_gssapi_msg_order_destroy(&(*context_handle)->order);
HEIMDAL_MUTEX_destroy(&(*context_handle)->ctx_id_mutex);
krb5_storage_free (sp);
free (*context_handle);