Skip to content

Commit

Permalink
fix a typo and rename the embedded dll
Browse files Browse the repository at this point in the history
  • Loading branch information
mlsmaycon committed Jun 14, 2021
1 parent 7449848 commit 7df6cde
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iface/iface_darwin.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ func assignAddr(address string, tunDevice tun.Device) error {
ip := strings.Split(address, "/")
cmd := exec.Command("ifconfig", ifaceName, "inet", address, ip[0])
if out, err := cmd.CombinedOutput(); err != nil {
log.Infoln("Command: %v failed with output %s and error: ", cmd.String(), out)
log.Infof("Command: %v failed with output %s and error: ", cmd.String(), out)
return err
}
_, resolvedNet, err := net.ParseCIDR(address)
Expand Down
File renamed without changes.

0 comments on commit 7df6cde

Please sign in to comment.