Fix callers of heim_ntlm_encode_type3; make build
This commit is contained in:
@@ -1629,7 +1629,7 @@ kcm_op_do_ntlm(krb5_context context,
|
|||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
ret = heim_ntlm_encode_type3(&type3, &ndata);
|
ret = heim_ntlm_encode_type3(&type3, &ndata, NULL);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
|
@@ -473,7 +473,7 @@ _gss_ntlm_init_sec_context
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
ret = heim_ntlm_encode_type3(&type3, &data);
|
ret = heim_ntlm_encode_type3(&type3, &data, NULL);
|
||||||
free(type3.sessionkey.data);
|
free(type3.sessionkey.data);
|
||||||
if (type3.lm.data)
|
if (type3.lm.data)
|
||||||
free(type3.lm.data);
|
free(type3.lm.data);
|
||||||
|
@@ -131,7 +131,7 @@ test_libntlm_v1(int flags)
|
|||||||
free(key.data);
|
free(key.data);
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = heim_ntlm_encode_type3(&type3, &data);
|
ret = heim_ntlm_encode_type3(&type3, &data, NULL);
|
||||||
if (ret)
|
if (ret)
|
||||||
errx(1, "heim_ntlm_encode_type3");
|
errx(1, "heim_ntlm_encode_type3");
|
||||||
|
|
||||||
@@ -260,7 +260,7 @@ test_libntlm_v2(int flags)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ret = heim_ntlm_encode_type3(&type3, &data);
|
ret = heim_ntlm_encode_type3(&type3, &data, NULL);
|
||||||
if (ret)
|
if (ret)
|
||||||
errx(1, "heim_ntlm_encode_type3");
|
errx(1, "heim_ntlm_encode_type3");
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user