(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:
Love Hörnquist Åstrand
2003-03-03 21:41:33 +00:00
parent e77351eb77
commit 4c580ecbd3
2 changed files with 6 additions and 6 deletions

View File

@@ -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;
} }

View File

@@ -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;
} }