Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c6e991de authored by Toyo Abe's avatar Toyo Abe Committed by David S. Miller
Browse files

[TUNTAP]: Fix wrong debug message.



This is a trivial fix of debug message.
When a persist flag is set, the message should say "enabled".

Signed-off-by: default avatarToyo Abe <tabe@miraclelinux.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent fae718dd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -610,7 +610,7 @@ static int tun_chr_ioctl(struct inode *inode, struct file *file,
			tun->flags &= ~TUN_PERSIST;

		DBG(KERN_INFO "%s: persist %s\n",
		    tun->dev->name, arg ? "disabled" : "enabled");
		    tun->dev->name, arg ? "enabled" : "disabled");
		break;

	case TUNSETOWNER: