(gss_inquire_context): rename argument open to open_context
git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@11673 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
@@ -44,7 +44,7 @@ OM_uint32 gss_inquire_context (
|
|||||||
gss_OID * mech_type,
|
gss_OID * mech_type,
|
||||||
OM_uint32 * ctx_flags,
|
OM_uint32 * ctx_flags,
|
||||||
int * locally_initiated,
|
int * locally_initiated,
|
||||||
int * open
|
int * open_context
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
OM_uint32 ret;
|
OM_uint32 ret;
|
||||||
@@ -77,8 +77,8 @@ OM_uint32 gss_inquire_context (
|
|||||||
if (locally_initiated)
|
if (locally_initiated)
|
||||||
*locally_initiated = context_handle->more_flags & LOCAL;
|
*locally_initiated = context_handle->more_flags & LOCAL;
|
||||||
|
|
||||||
if (open)
|
if (open_context)
|
||||||
*open = context_handle->more_flags & OPEN;
|
*open_context = context_handle->more_flags & OPEN;
|
||||||
|
|
||||||
return GSS_S_COMPLETE;
|
return GSS_S_COMPLETE;
|
||||||
}
|
}
|
||||||
|
@@ -44,7 +44,7 @@ OM_uint32 gss_inquire_context (
|
|||||||
gss_OID * mech_type,
|
gss_OID * mech_type,
|
||||||
OM_uint32 * ctx_flags,
|
OM_uint32 * ctx_flags,
|
||||||
int * locally_initiated,
|
int * locally_initiated,
|
||||||
int * open
|
int * open_context
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
OM_uint32 ret;
|
OM_uint32 ret;
|
||||||
@@ -77,8 +77,8 @@ OM_uint32 gss_inquire_context (
|
|||||||
if (locally_initiated)
|
if (locally_initiated)
|
||||||
*locally_initiated = context_handle->more_flags & LOCAL;
|
*locally_initiated = context_handle->more_flags & LOCAL;
|
||||||
|
|
||||||
if (open)
|
if (open_context)
|
||||||
*open = context_handle->more_flags & OPEN;
|
*open_context = context_handle->more_flags & OPEN;
|
||||||
|
|
||||||
return GSS_S_COMPLETE;
|
return GSS_S_COMPLETE;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user