Displaying 1 result from an estimated 1 matches for "gss_hack_ssh_to_fix_stupid_bug".
2006 Feb 27
2
Bug in Kerberos support for openssh.
...rprisingly, the datatype mismatch
causes the call to fail. Could have caused it to crash, I suppose -
that would have been a much clearer indication of what the trouble was.
I did manage to hack the thing to work - I first hacked libgssapi.so to
include a new function:
OM_uint32 KRB5_CALLCONV
gss_hack_ssh_to_fix_stupid_bug(minor_status,
input_name,
output_name)
OM_uint32 * minor_status;
gss_name_t input_name;
gss_name_t * output_name;
{
gss_union_name_t union_name;
union_name = (gss_union_name_t) input_na...