Skip to content

Commit

Permalink
typo. rom brad at comstyle.com
Browse files Browse the repository at this point in the history
  • Loading branch information
itojun committed Feb 7, 2004
1 parent 36ed2a8 commit 9c39a54
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kame/sys/net/pf.c
Expand Up @@ -5326,15 +5326,15 @@ pf_test(int dir, struct ifnet *ifp, struct mbuf **m0)
if (action == PF_PASS) {
r = s->rule.ptr;
r->packets++;
#ifdef __OpeNBSD__
#ifdef __OpenBSD__
r->bytes += ntohs(h->ip_len);
#else
r->bytes += h->ip_len;
#endif
a = s->anchor.ptr;
if (a != NULL) {
a->packets++;
#ifdef __OpeNBSD__
#ifdef __OpenBSD__
a->bytes += ntohs(h->ip_len);
#else
a->bytes += h->ip_len;
Expand Down

0 comments on commit 9c39a54

Please sign in to comment.