From 31f9d414a386678abb8a202f23b7a5992de8b82b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Josef=20S=C3=B6ntgen?= Date: Tue, 8 Oct 2024 11:52:40 +0200 Subject: [PATCH] sculpt_manager: remove invalid network node With the recent Wifi::Manager changes setting an invalid SSID will lead to a diagnostic warning. Since disconnecting is handled by removing the existent '' there is no reason to generate an invalid node in the first place. Issue #5356. --- repos/gems/src/app/sculpt_manager/network.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/repos/gems/src/app/sculpt_manager/network.h b/repos/gems/src/app/sculpt_manager/network.h index df21492a77..20690639c1 100644 --- a/repos/gems/src/app/sculpt_manager/network.h +++ b/repos/gems/src/app/sculpt_manager/network.h @@ -176,14 +176,6 @@ struct Sculpt::Network : Noncopyable xml.attribute("verbose", false); xml.attribute("log_level", "error"); - - xml.node("network", [&]() { - /* generate attributes to ease subsequent manual tweaking */ - xml.attribute("ssid", ""); - xml.attribute("protection", "NONE"); - xml.attribute("passphrase", ""); - xml.attribute("auto_connect", false); - }); }); _runtime_config_generator.generate_runtime_config();