Merge pull request #651 from tnir/tnir/bridge/promiscuous

bridge: Fix typo in error message for promiscuous mode
This commit is contained in:
Casey Callendrello 2021-08-10 14:55:21 +02:00 committed by GitHub
commit 7995c2d934
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -431,7 +431,7 @@ func cmdAdd(args *skel.CmdArgs) error {
}
if n.HairpinMode && n.PromiscMode {
return fmt.Errorf("cannot set hairpin mode and promiscous mode at the same time.")
return fmt.Errorf("cannot set hairpin mode and promiscuous mode at the same time.")
}
br, brInterface, err := setupBridge(n)