From: LaserEyess Date: Fri, 10 Dec 2021 00:28:31 +0000 (-0500) Subject: network: rename SetupState to AdministrativeState X-Git-Tag: v250-rc3~75 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ea5e55b3112205194cfb6302710e989158d95b1d;p=thirdparty%2Fsystemd.git network: rename SetupState to AdministrativeState This is more consistent with the terminology used elsewhere. In particular it is consistent with the name of the property exposed over dbus for the link state. --- diff --git a/src/network/networkd-json.c b/src/network/networkd-json.c index f2bd4982fe0..fb1f50063ea 100644 --- a/src/network/networkd-json.c +++ b/src/network/networkd-json.c @@ -1196,7 +1196,7 @@ int link_build_json(Link *link, JsonVariant **ret) { JSON_BUILD_PAIR_STRING_NON_EMPTY("SSID", link->ssid), JSON_BUILD_PAIR_ETHER_ADDR_NON_NULL("BSSID", &link->bssid), /* link state */ - JSON_BUILD_PAIR_STRING("SetupState", link_state_to_string(link->state)), + JSON_BUILD_PAIR_STRING("AdministrativeState", link_state_to_string(link->state)), JSON_BUILD_PAIR_STRING("OperationalState", link_operstate_to_string(link->operstate)), JSON_BUILD_PAIR_STRING("CarrierState", link_carrier_state_to_string(link->carrier_state)), JSON_BUILD_PAIR_STRING("AddressState", link_address_state_to_string(link->address_state)),