Oops - add a missing cast.

This commit is contained in:
Brian Somers 1999-07-10 00:08:19 +00:00
parent 32bd4110d5
commit ad21dff290
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48724

View file

@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: slcompress.c,v 1.26 1999/05/09 20:02:26 brian Exp $
* $Id: slcompress.c,v 1.27 1999/07/10 00:03:58 brian Exp $
*
* Van Jacobson (van@helios.ee.lbl.gov), Dec 31, 1989:
* - Initial distribution.
@ -558,7 +558,7 @@ sl_uncompress_tcp(u_char ** bufp, int len, u_int type, struct slcompress *comp,
/* Watch out for alighment problems.... */
sum = ~changes;
bp = cp + (int)&((struct ip *)0)->ip_sum;
bp = (u_short *)(cp + (int)&((struct ip *)0)->ip_sum);
memcpy(bp, &sum, sizeof *bp);
}
return (len);