summaryrefslogtreecommitdiff
path: root/src/devices/nm-device-ip-tunnel.c
diff options
context:
space:
mode:
authorThomas Haller <thaller@redhat.com>2018-01-23 12:24:29 +0100
committerThomas Haller <thaller@redhat.com>2018-01-23 12:55:33 +0100
commitaed6e28461955ac0428bd1b61e27247eb6b986a7 (patch)
treea46a3f65973ec374d4fd65669294125a1a887491 /src/devices/nm-device-ip-tunnel.c
parentb411b54e278a5e773fc58b3231130a604144ea84 (diff)
downloadNetworkManager-aed6e28461955ac0428bd1b61e27247eb6b986a7.tar.gz
trivial: avoid XXX tag and replace by NOTE or FIXME
XXX was used to either raise attention (NOTE) or to indicate that this is ugly code that should be fixed (FIXME). The usage was inconsistent. Let's avoid XXX and use either NOTE or FIXME.
Diffstat (limited to 'src/devices/nm-device-ip-tunnel.c')
-rw-r--r--src/devices/nm-device-ip-tunnel.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/nm-device-ip-tunnel.c b/src/devices/nm-device-ip-tunnel.c
index 24ee62c3bc..4b31ad704f 100644
--- a/src/devices/nm-device-ip-tunnel.c
+++ b/src/devices/nm-device-ip-tunnel.c
@@ -98,9 +98,9 @@ ip6tnl_flags_setting_to_plat (NMIPTunnelFlags flags)
G_STATIC_ASSERT (NM_IP_TUNNEL_FLAG_IP6_RCV_DSCP_COPY == IP6_TNL_F_RCV_DSCP_COPY);
G_STATIC_ASSERT (NM_IP_TUNNEL_FLAG_IP6_USE_ORIG_FWMARK == IP6_TNL_F_USE_ORIG_FWMARK);
- /* XXX: "accidentally", the numeric values correspond.
- * For flags added in the future, that might no longer
- * be the case. */
+ /* NOTE: "accidentally", the numeric values correspond.
+ * For flags added in the future, that might no longer
+ * be the case. */
return flags & _NM_IP_TUNNEL_FLAG_ALL_IP6TNL;
}