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:
parent
06f132c5d0
commit
1fd9eb6069
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue