use rk_UNCONST

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15452 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-06-16 20:40:49 +00:00
parent dfc0cda3e3
commit 6ff139c34a
2 changed files with 2 additions and 2 deletions

View File

@@ -87,7 +87,7 @@ _gssapi_verify_mech_header(u_char **str,
mech->length) != 0) mech->length) != 0)
return GSS_S_BAD_MECH; return GSS_S_BAD_MECH;
p += mech_len; p += mech_len;
*str = (char *)p; *str = rk_UNCONST(p);
return GSS_S_COMPLETE; return GSS_S_COMPLETE;
} }

View File

@@ -87,7 +87,7 @@ _gssapi_verify_mech_header(u_char **str,
mech->length) != 0) mech->length) != 0)
return GSS_S_BAD_MECH; return GSS_S_BAD_MECH;
p += mech_len; p += mech_len;
*str = (char *)p; *str = rk_UNCONST(p);
return GSS_S_COMPLETE; return GSS_S_COMPLETE;
} }