diff options
author | 2008-09-16 13:58:55 +0000 | |
---|---|---|
committer | 2008-09-16 13:58:55 +0000 | |
commit | 59b7d6bdfbb64abd00bc4370a0ca3e78fce0532d (patch) | |
tree | 838f22077c02ae3826f2221eda572f87f1c1cb79 /sys/net/if_pflow.c | |
parent | SMP ddb support, with some feedback from kettenis. (diff) | |
download | wireguard-openbsd-59b7d6bdfbb64abd00bc4370a0ca3e78fce0532d.tar.xz wireguard-openbsd-59b7d6bdfbb64abd00bc4370a0ca3e78fce0532d.zip |
fix whitespace/tab typos
ok henning@ claudio@
Diffstat (limited to 'sys/net/if_pflow.c')
-rw-r--r-- | sys/net/if_pflow.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/net/if_pflow.c b/sys/net/if_pflow.c index 87e0a094ab0..2f2950f3a9d 100644 --- a/sys/net/if_pflow.c +++ b/sys/net/if_pflow.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pflow.c,v 1.1 2008/09/09 13:56:39 henning Exp $ */ +/* $OpenBSD: if_pflow.c,v 1.2 2008/09/16 13:58:55 gollo Exp $ */ /* * Copyright (c) 2008 Henning Brauer <henning@openbsd.org> @@ -585,9 +585,9 @@ pflow_sendout_mbuf(struct pflow_softc *sc, struct mbuf *m) ((struct ip *)ui)->ip_len = htons(sizeof (struct udpiphdr) + len); /* - * Compute the pseudo-header checksum; defer further checksumming - * until ip_output() or hardware (if it exists). - */ + * Compute the pseudo-header checksum; defer further checksumming + * until ip_output() or hardware (if it exists). + */ m->m_pkthdr.csum_flags |= M_UDPV4_CSUM_OUT; ui->ui_sum = in_cksum_phdr(ui->ui_src.s_addr, ui->ui_dst.s_addr, htons((u_int16_t)len + |