1
0
mirror of https://github.com/openbsd/src.git synced 2026-05-01 17:46:35 +00:00

white space fixes, no functional change

This commit is contained in:
dlg
2025-11-26 06:57:24 +00:00
parent 244266f8f4
commit cf33112e94

View File

@@ -1,4 +1,4 @@
/* $OpenBSD: if_rport.c,v 1.7 2025/11/25 11:58:13 dlg Exp $ */
/* $OpenBSD: if_rport.c,v 1.8 2025/11/26 06:57:24 dlg Exp $ */
/*
* Copyright (c) 2023 David Gwynne <dlg@openbsd.org>
@@ -320,25 +320,25 @@ rport_start(struct ifqueue *ifq)
static void
rport_input(struct ifnet *ifp, struct mbuf *m, struct netstack *ns)
{
switch (m->m_pkthdr.ph_family) {
case AF_INET:
ipv4_input(ifp, m, ns);
break;
switch (m->m_pkthdr.ph_family) {
case AF_INET:
ipv4_input(ifp, m, ns);
break;
#ifdef INET6
case AF_INET6:
ipv6_input(ifp, m, ns);
break;
case AF_INET6:
ipv6_input(ifp, m, ns);
break;
#endif
#ifdef MPLS
case AF_MPLS:
mpls_input(ifp, m, ns);
break;
case AF_MPLS:
mpls_input(ifp, m, ns);
break;
#endif
default:
default:
counters_inc(ifp->if_counters, ifc_noproto);
m_freem(m);
break;
}
m_freem(m);
break;
}
}
static int