From 6ede6ed17fc7fcf275e225ef8bfbbe84c0f1c192 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pavel=20=C5=A0imerda?= Date: Wed, 17 Apr 2013 12:30:09 +0200 Subject: [PATCH] trivial: fix typo in comment --- src/platform/nm-linux-platform.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/platform/nm-linux-platform.c b/src/platform/nm-linux-platform.c index f409a7abb6..7b15e69465 100644 --- a/src/platform/nm-linux-platform.c +++ b/src/platform/nm-linux-platform.c @@ -874,9 +874,7 @@ link_supports_vlans (NMPlatform *platform, int ifindex) struct ethtool_get_features_block features_block; } edata = { .features = { .cmd = ETHTOOL_GFEATURES, .size = 1 } }; - /* Only ARPHDR_ETHER links can possibly support VLANs. Thanks to Dan Winship - * for pointing this out. - */ + /* Only ARPHRD_ETHER links can possibly support VLANs. */ if (!rtnllink || rtnl_link_get_arptype (rtnllink) != ARPHRD_ETHER) return FALSE;