From 16a188c227cdeef9a40e5ec4515d97f1cd727b8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Mon, 16 Feb 2009 18:35:26 +0000 Subject: [PATCH] compile warning git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24719 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/gssapi/mech/gss_aeap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/gssapi/mech/gss_aeap.c b/lib/gssapi/mech/gss_aeap.c index 3b0e658b5..563c489d1 100644 --- a/lib/gssapi/mech/gss_aeap.c +++ b/lib/gssapi/mech/gss_aeap.c @@ -116,7 +116,7 @@ gss_release_iov_buffer(OM_uint32 *minor_status, return GSS_S_CALL_INACCESSIBLE_READ; for (i = 0; i < iov_count; i++) { - if (GSS_IOV_BUFFER_FLAGS(iov[i].type) & GSS_IOV_BUFFER_FLAG_ALLOCATED) + if (iov[i].type & GSS_IOV_BUFFER_TYPE_FLAG_ALLOCATED) continue; gss_release_buffer(&junk, &iov[i].buffer); }