summaryrefslogtreecommitdiffstats
path: root/src/lib/rpc/ChangeLog
diff options
context:
space:
mode:
authorEzra Peisach <epeisach@mit.edu>2001-07-19 20:41:30 +0000
committerEzra Peisach <epeisach@mit.edu>2001-07-19 20:41:30 +0000
commit825bae1e50157fd6d273044883a94e75466c4966 (patch)
tree4a8bf58d56a8aae42f21a60be3db72205a4fe618 /src/lib/rpc/ChangeLog
parent1b480c4fd9ea33721759e16e5ef7312c43ee7b11 (diff)
downloadkrb5-825bae1e50157fd6d273044883a94e75466c4966.tar.gz
krb5-825bae1e50157fd6d273044883a94e75466c4966.tar.xz
krb5-825bae1e50157fd6d273044883a94e75466c4966.zip
* auth.h: AUTH ah_private structure element changed to void *
* clnt.h: CLIENT cl_private structure element changed to type void *. * svc.h: SVCXRPT elements xp_p1 and xp_p2 changed to void * from caddr_t. * svc_udp.c: su_cache element of svcudp_data from caddr_t to void *. * clnt_tcp.c, svc_tcp.c (writetcp, readtcp): Cleanup alignment warning in casts. * types.hin (mem_alloc): Do not cast type of malloc to char *. * xdr.h: Change type of x_private of XDR from caddr_t to void *. git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13620 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/rpc/ChangeLog')
-rw-r--r--src/lib/rpc/ChangeLog20
1 files changed, 19 insertions, 1 deletions
diff --git a/src/lib/rpc/ChangeLog b/src/lib/rpc/ChangeLog
index bc5c27bf35..92c9c9a072 100644
--- a/src/lib/rpc/ChangeLog
+++ b/src/lib/rpc/ChangeLog
@@ -1,3 +1,21 @@
+2001-07-19 Ezra Peisach <epeisach@mit.edu>
+
+ * auth.h: AUTH ah_private structure element changed to void *.
+
+ * clnt.h: CLIENT cl_private structure element changed to type void *.
+
+ * svc.h: SVCXRPT elements xp_p1 and xp_p2 changed to void * from
+ caddr_t.
+
+ * svc_udp.c: su_cache element of svcudp_data from caddr_t to void *.
+
+ * clnt_tcp.c, svc_tcp.c (writetcp, readtcp): Cleanup alignment
+ warning in casts.
+
+ * types.hin (mem_alloc): Do not cast type of malloc to char *.
+
+ * xdr.h: Change type of x_private of XDR from caddr_t to void *.
+
2001-07-09 Ezra Peisach <epeisach@mit.edu>
* pmap_rmt.c, svc.c, svc_simple.c, svc_udp.c, svc_tcp.c,
@@ -32,7 +50,7 @@
OTW transfer of gids.
* clnt_tcp.c, svc_tcp.c: Change writetcp and readtcp to take char
- * as first argument to be compatible with xdrrec_create.
+ as first argument to be compatible with xdrrec_create.
* xdr.c (xdr_opaque): Cast argument in call to XDR_GETBYTES.