diff options
author | 2008-05-26 21:08:47 +0000 | |
---|---|---|
committer | 2008-05-26 21:08:47 +0000 | |
commit | 09c13838ae8af762455e0e92c0902b2ef166ad4c (patch) | |
tree | ff63813cc6d15acb0be766de2eb26931f8df847c | |
parent | - put CAVEATS in the right place (diff) | |
download | wireguard-openbsd-09c13838ae8af762455e0e92c0902b2ef166ad4c.tar.xz wireguard-openbsd-09c13838ae8af762455e0e92c0902b2ef166ad4c.zip |
Fix typo, such that this actually compiles.
-rw-r--r-- | sys/arch/socppc/dev/if_tsec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/socppc/dev/if_tsec.c b/sys/arch/socppc/dev/if_tsec.c index 5eb1455daf6..a6fe1492a30 100644 --- a/sys/arch/socppc/dev/if_tsec.c +++ b/sys/arch/socppc/dev/if_tsec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_tsec.c,v 1.9 2008/05/26 20:57:59 brad Exp $ */ +/* $OpenBSD: if_tsec.c,v 1.10 2008/05/26 21:08:47 kettenis Exp $ */ /* * Copyright (c) 2008 Mark Kettenis @@ -703,7 +703,7 @@ tsec_tx_proc(struct tsec_softc *sc) m_freem(txb->tb_m); txb->tb_m = NULL; - ifp->if_opacket++; + ifp->if_opackets++; } ifp->if_flags &= ~IFF_OACTIVE; |