Add missing return

This commit is contained in:
Josh Deprez 2024-04-15 18:09:43 +10:00
parent 793b098f9e
commit 0d12b55735
Signed by: josh
SSH key fingerprint: SHA256:zZji7w1Ilh2RuUpbQcqkLPrqmRwpiCSycbF2EfKm6Kw

2
nbp.go
View file

@ -175,4 +175,6 @@ func handleNBP(pcapHandle *pcap.Handle, myHWAddr, srcHWAddr ethernet.Addr, myAdd
default:
return fmt.Errorf("TODO: handle function %v", nbpkt.Function)
}
return nil
}