+Sat Aug 20 01:43:43 1994 Theodore Y. Ts'o (tytso at tsx-11)
+
+ * mk_req_ext.c (krb5_generate_authenticator): Fix pointer aliasing
+ problem between newkey and authent->subkey.
+
Wed Aug 17 17:58:22 1994 Theodore Y. Ts'o (tytso at tsx-11)
* encode_kdc.c (krb5_encode_kdc_rep): Pass in to
krb5_int32 seq_number;
krb5_authdata **authorization;
{
+ krb5_error_code retval;
+
authent->client = client;
authent->checksum = (krb5_checksum *)cksum;
+ if (key) {
+ retval = krb5_copy_keyblock(key, &authent->subkey);
+ if (retval)
+ return retval;
+ } else
+ authent->subkey = 0;
authent->subkey = key;
authent->seq_number = seq_number;
authent->authorization_data = authorization;