diff options
author | Joerg Goltermann <gollo@cvs.openbsd.org> | 2008-09-16 13:58:56 +0000 |
---|---|---|
committer | Joerg Goltermann <gollo@cvs.openbsd.org> | 2008-09-16 13:58:56 +0000 |
commit | 51fd863ee46944659e499e71c2c3f710bf1277a0 (patch) | |
tree | 76207f536138c5128e14fefb8f8d4afcd36d6568 | |
parent | a15f64b6da518de85dfbf9f633ec9d04f8d76e76 (diff) |
fix whitespace/tab typos
ok henning@ claudio@
-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 + |