diff --git a/iface/tun_usp_linux.go b/iface/tun_usp_linux.go index f516b9f4d..9f0210228 100644 --- a/iface/tun_usp_linux.go +++ b/iface/tun_usp_linux.go @@ -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)