+Fri Mar 17 15:36:07 1995 Chris Provenzano (proven@mit.edu)
+
+ * kpasswd.c: Cast malloc() return value to shut compiler up.
Fri Mar 10 11:09:34 1995 Chris Provenzano (proven@mit.edu)
- * kpasswd.c Use new calling convention for krb5_sendauth(),
+ * kpasswd.c: Use new calling convention for krb5_sendauth(),
krb5_mk_priv(), and krb5_rd_priv().
Thu Mar 2 12:25:29 1995 Theodore Y. Ts'o <tytso@dcl>
Tue Feb 14 15:30:55 1995 Chris Provenzano (proven@mit.edu)
- * kpasswd.c Call krb5_sendauth(), krb5_get_credentials()
+ * kpasswd.c: Call krb5_sendauth(), krb5_get_credentials()
with new calling convention.
Fri Feb 10 17:48:05 1995 Theodore Y. Ts'o <tytso@dcl>
rd_priv_resp.oper_code = msg_data.data[1];
rd_priv_resp.retn_code = msg_data.data[2];
if (msg_data.length > 3 && msg_data.data[3]) {
- rd_priv_resp.message = malloc(msg_data.length - 2);
+ rd_priv_resp.message = (char *)malloc(msg_data.length - 2);
if (rd_priv_resp.message) {
memcpy(rd_priv_resp.message, msg_data.data + 3,
msg_data.length - 3);