Don't ovewrite the error code, from Peter Meinecke.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@21654 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2007-07-21 17:30:18 +00:00
parent bf0122ac8a
commit 483558eeff

View File

@@ -191,19 +191,28 @@ init_reply_header (struct rx_header *hdr,
reply_hdr->serviceid = hdr->serviceid;
}
/*
* Create an error `reply<6C> using for the packet `hdr' with the error
* `error<6F> code.
*/
static void
make_error_reply (struct rx_header *hdr,
uint32_t ret,
uint32_t error,
krb5_data *reply)
{
krb5_storage *sp;
struct rx_header reply_hdr;
krb5_error_code ret;
krb5_storage *sp;
init_reply_header (hdr, &reply_hdr, HT_ABORT, HF_LAST);
sp = krb5_storage_emem();
if (sp == NULL)
return;
ret = encode_rx_header (&reply_hdr, sp);
krb5_store_int32(sp, ret);
if (ret)
return;
krb5_store_int32(sp, error);
krb5_storage_to_data (sp, reply);
krb5_storage_free (sp);
}