Fix typo in macvlan_setup.go

Signed-off-by: yalpul <yalpul@gmail.com>
This commit is contained in:
yalpul 2021-06-19 11:36:16 +03:00
parent ceac2ef2e2
commit 967ec6f2e8
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ func parseVlan(linkName string) (string, int, error) {
}
// Check if the interface exists
if !parentExists(parent) {
return "", 0, fmt.Errorf("-o parent interface does was not found on the host: %s", parent)
return "", 0, fmt.Errorf("-o parent interface was not found on the host: %s", parent)
}
return parent, vidInt, nil