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:
@@ -427,10 +427,10 @@ init_auth
|
||||
|
||||
gsskrb5_is_cfx(*context_handle, &is_cfx);
|
||||
|
||||
ret = gssapi_msg_order_create(minor_status,
|
||||
&(*context_handle)->order,
|
||||
gssapi_msg_order_f(flags),
|
||||
seq_number, 0, is_cfx);
|
||||
ret = _gssapi_msg_order_create(minor_status,
|
||||
&(*context_handle)->order,
|
||||
_gssapi_msg_order_f(flags),
|
||||
seq_number, 0, is_cfx);
|
||||
if (ret)
|
||||
goto failure;
|
||||
|
||||
@@ -456,7 +456,7 @@ init_auth
|
||||
krb5_free_principal (gssapi_krb5_context,
|
||||
(*context_handle)->target);
|
||||
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);
|
||||
free (*context_handle);
|
||||
*context_handle = GSS_C_NO_CONTEXT;
|
||||
@@ -521,10 +521,10 @@ repl_mutual
|
||||
|
||||
gsskrb5_is_cfx(*context_handle, &is_cfx);
|
||||
|
||||
ret = gssapi_msg_order_create(minor_status,
|
||||
&(*context_handle)->order,
|
||||
gssapi_msg_order_f((*context_handle)->flags),
|
||||
seq_number, 0, is_cfx);
|
||||
ret = _gssapi_msg_order_create(minor_status,
|
||||
&(*context_handle)->order,
|
||||
_gssapi_msg_order_f((*context_handle)->flags),
|
||||
seq_number, 0, is_cfx);
|
||||
if (ret) {
|
||||
HEIMDAL_MUTEX_unlock(&(*context_handle)->ctx_id_mutex);
|
||||
return ret;
|
||||
|
Reference in New Issue
Block a user