View | Details | Raw Unified | Return to bug 20053
Collapse All | Expand All

(-)commands.c (-2 / +2 lines)
Lines 2859-2865 Link Here
2859
	int	*protop;
2859
	int	*protop;
2860
	int	*optp;
2860
	int	*optp;
2861
{
2861
{
2862
	static char buf[1024];	/*XXX*/
2862
	static char buf[1024 + ALIGNBYTES];	/*XXX*/
2863
	struct cmsghdr *cmsg;
2863
	struct cmsghdr *cmsg;
2864
#ifdef	sysV88
2864
#ifdef	sysV88
2865
	static IOPTN ipopt;
2865
	static IOPTN ipopt;
Lines 2901-2907 Link Here
2901
		lsrp = *cpp;
2901
		lsrp = *cpp;
2902
		ep = lsrp + *lenp;
2902
		ep = lsrp + *lenp;
2903
	} else {
2903
	} else {
2904
		*cpp = lsrp = ALIGN(buf);
2904
		*cpp = lsrp = (char *)ALIGN(buf);
2905
		ep = lsrp + 1024;
2905
		ep = lsrp + 1024;
2906
	}
2906
	}

Return to bug 20053