+2000-10-17 Ezra Peisach <epeisach@mit.edu>
+
+ * ovsec_kadmd.c (do_schpw): Cast arguments to sendto() which take int.
+
2000-06-30 Tom Yu <tlyu@mit.edu>
* server_stubs.c: Kludge to rename xdr_free() properly.
goto cleanup;
}
- len = sendto(s1, repdata.data, repdata.length, 0,
+ len = sendto(s1, repdata.data, (int) repdata.length, 0,
(struct sockaddr *) &from, sizeof(from));
- if (len < repdata.length) {
+ if (len < (int) repdata.length) {
krb5_xfree(repdata.data);
krb5_klog_syslog(LOG_ERR, "chpw: Error sending reply: %s",