diff options
author | 2020-12-30 13:18:07 +0000 | |
---|---|---|
committer | 2020-12-30 13:18:07 +0000 | |
commit | 9566a16b56065a82bb3de96eaa75d89a3f6dcbdd (patch) | |
tree | d12f2c0b88ba5aeb66a706241da61b41100d9e1f | |
parent | missing word fix; from nam nguyen (diff) | |
download | wireguard-openbsd-9566a16b56065a82bb3de96eaa75d89a3f6dcbdd.tar.xz wireguard-openbsd-9566a16b56065a82bb3de96eaa75d89a3f6dcbdd.zip |
Fix pppoe_dispatch_disc_pkt definition to be in accordance with style(9)
ok claudio@ kn@
-rw-r--r-- | sys/net/if_pppoe.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/net/if_pppoe.c b/sys/net/if_pppoe.c index 061aabd44ab..2b8a4545eb1 100644 --- a/sys/net/if_pppoe.c +++ b/sys/net/if_pppoe.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_pppoe.c,v 1.74 2020/12/30 12:10:39 mvs Exp $ */ +/* $OpenBSD: if_pppoe.c,v 1.75 2020/12/30 13:18:07 mvs Exp $ */ /* $NetBSD: if_pppoe.c,v 1.51 2003/11/28 08:56:48 keihan Exp $ */ /* @@ -357,7 +357,8 @@ pppoeintr(void) } /* Analyze and handle a single received packet while not in session state. */ -static void pppoe_dispatch_disc_pkt(struct mbuf *m) +static void +pppoe_dispatch_disc_pkt(struct mbuf *m) { struct pppoe_softc *sc; struct pppoehdr *ph; |