@@ -41,7 +41,7 @@ gss_ctx_id_t context_handle;
gss_buffer_t input_message_buffer;
gss_buffer_t output_message_buffer;
int * conf_state;
-int * qop_state;
+gss_qop_t * qop_state;
{
OM_uint32 status;
@@ -74,7 +74,7 @@ int * qop_state;
ctx->internal_ctx_id,
message_buffer,
token_buffer,
- qop_state);
+ (gss_qop_t *)qop_state);
else
status = GSS_S_BAD_BINDINGS;
@@ -171,7 +171,7 @@ typedef struct gss_config {
gss_buffer_t, /* input_message_buffer */
gss_buffer_t, /* output_message_buffer */
int*, /* conf_state */
- int* /* qop_state */
+ gss_qop_t * /* qop_state */
);
OM_uint32 (*gss_display_status)
(
@@ -316,7 +316,7 @@ typedef struct gss_config {
gss_ctx_id_t, /* context_handle */
gss_buffer_t, /* message_buffer */
gss_buffer_t, /* token_buffer */
- int* /* qop_state */
+ gss_qop_t * /* qop_state */
);
OM_uint32 (*gss_export_lucid_sec_context)
Changed the signedness qop_state argument from int * to gss_qop_t * Signed-off-by: Steve Dickson <steved@redhat.com> --- src/g_unseal.c | 2 +- src/g_verify.c | 2 +- src/mglueP.h | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-)