diff options
author | Bruce Evans <bde@FreeBSD.org> | 1999-08-29 10:23:13 +0000 |
---|---|---|
committer | Bruce Evans <bde@FreeBSD.org> | 1999-08-29 10:23:13 +0000 |
commit | 684f9417a29f683a5e1d93ab352f38f85f7c4062 (patch) | |
tree | 4cc638bd65b5fd3b631671b078958a9020622bc7 /sys/netinet | |
parent | 09c12446407bc3c5fbcccf317b7e4bb9dc78a687 (diff) | |
download | src-684f9417a29f683a5e1d93ab352f38f85f7c4062.tar.gz src-684f9417a29f683a5e1d93ab352f38f85f7c4062.zip |
Oops, I missed a cast in rev.1.119.
Notes
Notes:
svn path=/head/; revision=50556
Diffstat (limited to 'sys/netinet')
-rw-r--r-- | sys/netinet/ip_fw.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/netinet/ip_fw.c b/sys/netinet/ip_fw.c index 4bfdc8bc8471..fadb7104f947 100644 --- a/sys/netinet/ip_fw.c +++ b/sys/netinet/ip_fw.c @@ -1359,7 +1359,7 @@ ip_fw_ctl(struct sockopt *sopt) for (fcp = LIST_FIRST(&ip_fw_chain), bp = buf; fcp; fcp = LIST_NEXT(fcp, chain)) { bcopy(fcp->rule, bp, sizeof *fcp->rule); - bp->pipe_ptr = (intptr_t) + bp->pipe_ptr = (void *)(intptr_t) ((struct ip_fw_ext *)fcp->rule)->dont_match_prob; bp++; } |