summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1999-07-10 00:03:58 +0000
committerBrian Somers <brian@FreeBSD.org>1999-07-10 00:03:58 +0000
commit32bd4110d59344c37c34a59a43e0e0d15e59d47d (patch)
treee305856238fde8fa6ac6be1fb1e6a547e7d32d20
parentdf99b42329ebc2494f2d67d46f47f5287d982d5c (diff)
Notes
-rw-r--r--usr.sbin/ppp/slcompress.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ppp/slcompress.c b/usr.sbin/ppp/slcompress.c
index 7359ac71a095..3e43299f35c8 100644
--- a/usr.sbin/ppp/slcompress.c
+++ b/usr.sbin/ppp/slcompress.c
@@ -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.25 1999/05/08 11:07:38 brian Exp $
+ * $Id: slcompress.c,v 1.26 1999/05/09 20:02:26 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 = &((struct ip *)cp)->ip_sum;
+ bp = cp + (int)&((struct ip *)0)->ip_sum;
memcpy(bp, &sum, sizeof *bp);
}
return (len);