Skip to content

Commit

Permalink
Merge branch 'loxilb-io:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
TrekkieCoder authored Oct 18, 2023
2 parents 57d3f1e + 5d55fa0 commit c713d36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions api/loxinlp/nlp.go
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ func DelFDBNoHook(macAddress, ifName string) int {
var ret int
MacAddress, err := net.ParseMAC(macAddress)
if err != nil {
tk.LogIt(tk.LogWarning, "[NLP] Port %s find Fail\n", ifName)
tk.LogIt(tk.LogWarning, "[NLP] MacAddress Parse %s Fail\n", macAddress)
return -1
}
IfName, err := nlp.LinkByName(ifName)
Expand Down Expand Up @@ -340,7 +340,7 @@ func AddNeighNoHook(address, ifName, macAddress string) int {
}
MacAddress, err := net.ParseMAC(macAddress)
if err != nil {
tk.LogIt(tk.LogWarning, "[NLP] Port %s find Fail\n", ifName)
tk.LogIt(tk.LogWarning, "[NLP] MacAddress Parse %s Fail\n", macAddress)
return -1
}
// Make Neigh
Expand Down

0 comments on commit c713d36

Please sign in to comment.