Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/network/pasta/pasta.go
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ func DetectFeatures(binary string) (*Features, error) {
func NewParentDriver(logWriter io.Writer, binary string, mtu int, ipnet *net.IPNet, ifname string,
disableHostLoopback, enableIPv6, implicitPortForwarding bool) (network.ParentDriver, error) {
if binary == "" {
return nil, errors.New("got empty slirp4netns binary")
return nil, errors.New("got empty pasta binary")
}
if mtu < 0 {
return nil, errors.New("got negative mtu")
Expand Down