diff options
author | Thomas Haller <thaller@redhat.com> | 2018-01-23 12:24:29 +0100 |
---|---|---|
committer | Thomas Haller <thaller@redhat.com> | 2018-01-23 12:55:33 +0100 |
commit | aed6e28461955ac0428bd1b61e27247eb6b986a7 (patch) | |
tree | a46a3f65973ec374d4fd65669294125a1a887491 /libnm/nm-object.c | |
parent | b411b54e278a5e773fc58b3231130a604144ea84 (diff) | |
download | NetworkManager-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 'libnm/nm-object.c')
-rw-r--r-- | libnm/nm-object.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libnm/nm-object.c b/libnm/nm-object.c index 758f06bb9d..4fa9b7bd33 100644 --- a/libnm/nm-object.c +++ b/libnm/nm-object.c @@ -608,8 +608,9 @@ handle_object_property (NMObject *self, const char *property_name, GVariant *val object = g_dbus_object_manager_get_object (priv->object_manager, path); if (!object) { /* This is a server bug -- a dangling object path for an object - * that does not exist. */ - /* XXX: We've ignored this before and the server hits the condition + * that does not exist. + * + * NOTE: We've ignored this before and the server hits the condition * more often that it should. Given we're able to recover from * ther error, let's lower the severity of the log message to * avoid unnecessarily bothering the user. This can be removed |