net/pkt: pkt_input() should not report an error using the nerr() macro when the PKT tap does not need the packet. That is not an error. Use ninfo() instead.

This commit is contained in:
Gregory Nutt 2018-11-16 13:48:30 -06:00
parent 06f132c5d0
commit 1fd9eb6069

View file

@ -121,7 +121,7 @@ int pkt_input(struct net_driver_s *dev)
}
else
{
nerr("ERROR: No listener\n");
ninfo("No PKT listener\n");
}
return ret;