Subject: CVS commit: src
To: None <source-changes@netbsd.org>
From: Christos Zoulas <christos@netbsd.org>
List: source-changes
Date: 11/15/1998 09:27:35
Module Name:	src
Committed By:	christos
Date:		Sun Nov 15 17:27:35 UTC 1998

Modified Files:
	src/lib/libc/rpc: clnt_raw.c
Log Message:
avoid potential buffer overflow and alignment problem that was caused
by casting a char[24] array to struct rpc_msg (sizeof(struct rpc_msg) == 48)
on i386. Use a union instead.