Diff between c94d218108842205aa9595d6fe296cd322a52a4c and f632a0c43a946766229c8b0fe13e2265b52bc784

Changed Files

File Additions Deletions Status
plugins/hostname.c +2 -2 modified

Full Patch

diff --git a/plugins/hostname.c b/plugins/hostname.c
index caf0579..c6c88c1 100644
--- a/plugins/hostname.c
+++ b/plugins/hostname.c
@@ -124,7 +124,7 @@ static void property_changed(GDBusProxy *proxy, const char *name,
 			g_free(pretty_hostname);
 			pretty_hostname = g_strdup(str);
 
-			manager_foreach_adapter(update_name, NULL);
+			adapter_foreach(update_name, NULL);
 		}
 	} else if (g_str_equal(name, "Chassis") == TRUE) {
 		if (iter == NULL) {
@@ -147,7 +147,7 @@ static void property_changed(GDBusProxy *proxy, const char *name,
 				major_class = chassis_table[i].major_class;
 				minor_class = chassis_table[i].minor_class;
 
-				manager_foreach_adapter(update_class, NULL);
+				adapter_foreach(update_class, NULL);
 				break;
 			}
 		}