Skip to content

Commit

Permalink
Add spaces around '='. style(9) fix, no functional changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
mvs committed Dec 8, 2023
1 parent 339bbf6 commit 7a77605
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sys/net/if_pflow.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/* $OpenBSD: if_pflow.c,v 1.101 2023/12/08 23:13:40 mvs Exp $ */
/* $OpenBSD: if_pflow.c,v 1.102 2023/12/08 23:15:44 mvs Exp $ */

/*
* Copyright (c) 2011 Florian Obser <florian@narrans.de>
Expand Down Expand Up @@ -513,7 +513,7 @@ pflowioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
if ((ifp->if_flags & IFF_UP) && sc->so != NULL) {
ifp->if_flags |= IFF_RUNNING;
mtx_enter(&sc->sc_mtx);
sc->sc_gcounter=pflowstats.pflow_flows;
sc->sc_gcounter = pflowstats.pflow_flows;
/* send templates on startup */
if (sc->sc_version == PFLOW_PROTO_10)
pflow_sendout_ipfix_tmpl(sc);
Expand Down Expand Up @@ -577,7 +577,7 @@ pflowioctl(struct ifnet *ifp, u_long cmd, caddr_t data)
if ((ifp->if_flags & IFF_UP) && sc->so != NULL) {
ifp->if_flags |= IFF_RUNNING;
mtx_enter(&sc->sc_mtx);
sc->sc_gcounter=pflowstats.pflow_flows;
sc->sc_gcounter = pflowstats.pflow_flows;
if (sc->sc_version == PFLOW_PROTO_10)
pflow_sendout_ipfix_tmpl(sc);
mtx_leave(&sc->sc_mtx);
Expand Down

0 comments on commit 7a77605

Please sign in to comment.