From: Maria Matejka Date: Wed, 4 May 2022 10:33:01 +0000 (+0200) Subject: Removed forgotten remnants of unused enum rtc X-Git-Tag: v3.0-alpha1~171^2~53^2~1 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0c4e0e4a635169cada395144dd67d1e66f1c9649;p=thirdparty%2Fbird.git Removed forgotten remnants of unused enum rtc --- diff --git a/bird-gdb.py b/bird-gdb.py index 3cf65a9cc..62c0ec87a 100644 --- a/bird-gdb.py +++ b/bird-gdb.py @@ -25,7 +25,6 @@ class BIRDFValPrinter(BIRDPrinter): "T_ENUM_RTS": "i", "T_ENUM_BGP_ORIGIN": "i", "T_ENUM_SCOPE": "i", - "T_ENUM_RTC": "i", "T_ENUM_RTD": "i", "T_ENUM_ROA": "i", "T_ENUM_NETTYPE": "i", diff --git a/filter/data.c b/filter/data.c index 425dfdd35..9dab19153 100644 --- a/filter/data.c +++ b/filter/data.c @@ -38,7 +38,6 @@ static const char * const f_type_str[] = { [T_ENUM_RTS] = "enum rts", [T_ENUM_BGP_ORIGIN] = "enum bgp_origin", [T_ENUM_SCOPE] = "enum scope", - [T_ENUM_RTC] = "enum rtc", [T_ENUM_RTD] = "enum rtd", [T_ENUM_ROA] = "enum roa", [T_ENUM_NETTYPE] = "enum nettype", diff --git a/lib/type.h b/lib/type.h index e43389f38..abce1a1f3 100644 --- a/lib/type.h +++ b/lib/type.h @@ -79,7 +79,6 @@ enum btype { T_ENUM_RTS = 0x31, T_ENUM_SCOPE = 0x33, - T_ENUM_RTC = 0x35, T_ENUM_RTD = 0x37, T_ENUM_ROA = 0x39, T_ENUM_NETTYPE = 0x3b,