From: Zbigniew Jędrzejewski-Szmek Date: Sun, 1 May 2016 04:59:49 +0000 (-0400) Subject: network: get rid of DUID_TYPE_RAW X-Git-Tag: v231~349^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7c285c74190e827c18a336f882cf4d9dcf4ee02a;p=platform%2Fupstream%2Fsystemd.git network: get rid of DUID_TYPE_RAW It wasn't used for anything after the recent changes. --- diff --git a/src/libsystemd-network/dhcp-identifier.h b/src/libsystemd-network/dhcp-identifier.h index dd0f926..1cc0f9f 100644 --- a/src/libsystemd-network/dhcp-identifier.h +++ b/src/libsystemd-network/dhcp-identifier.h @@ -26,7 +26,6 @@ #include "unaligned.h" typedef enum DUIDType { - DUID_TYPE_RAW = 0, DUID_TYPE_LLT = 1, DUID_TYPE_EN = 2, DUID_TYPE_LL = 3, diff --git a/src/network/networkd-conf.c b/src/network/networkd-conf.c index 1b2047f..6072c1e 100644 --- a/src/network/networkd-conf.c +++ b/src/network/networkd-conf.c @@ -37,7 +37,6 @@ int manager_parse_config_file(Manager *m) { } static const char* const duid_type_table[_DUID_TYPE_MAX] = { - [DUID_TYPE_RAW] = "raw", [DUID_TYPE_LLT] = "link-layer-time", [DUID_TYPE_EN] = "vendor", [DUID_TYPE_LL] = "link-layer",