settings: get_plugin() should return plugin that has all requested capabilities

This bug had no real consequences because we only called
get_plugin() with one capability at a time.
This commit is contained in:
Thomas Haller 2015-07-07 16:54:05 +02:00
parent ad2809cf6a
commit 08b99eea10

View file

@ -536,7 +536,7 @@ get_plugin (NMSettings *self, guint32 capability)
NMSystemConfigInterfaceCapabilities caps = NM_SYSTEM_CONFIG_INTERFACE_CAP_NONE;
g_object_get (G_OBJECT (iter->data), NM_SYSTEM_CONFIG_INTERFACE_CAPABILITIES, &caps, NULL);
if (caps & capability)
if (NM_FLAGS_ALL (caps, capability))
return NM_SYSTEM_CONFIG_INTERFACE (iter->data);
}