Skip to content

Commit

Permalink
Fix typo in iface/tun_usp_linux.go (#1457)
Browse files Browse the repository at this point in the history
  • Loading branch information
surik authored Jan 12, 2024
1 parent 6a2a97f commit 8bb16e0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iface/tun_usp_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func (t *tunUSPDevice) Create() (wgConfigurer, error) {
log.Info("create tun interface")
tunIface, err := tun.CreateTUN(t.name, t.mtu)
if err != nil {
log.Debugf("faile to create tun unterface (%s, %d): %s", t.name, t.mtu, err)
log.Debugf("failed to create tun unterface (%s, %d): %s", t.name, t.mtu, err)
return nil, err
}
t.wrapper = newDeviceWrapper(tunIface)
Expand Down

0 comments on commit 8bb16e0

Please sign in to comment.