diff options
author | Maria Matejka <mq@ucw.cz> | 2022-05-04 12:33:01 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-05-04 15:39:21 +0200 |
commit | 0c4e0e4a635169cada395144dd67d1e66f1c9649 (patch) | |
tree | 5faa7682b67ca09297e503c6c91db2ac320fec3c | |
parent | cce974e8ea992d0e6d2f649eca7880b436d91d71 (diff) |
Removed forgotten remnants of unused enum rtc
-rw-r--r-- | bird-gdb.py | 1 | ||||
-rw-r--r-- | filter/data.c | 1 | ||||
-rw-r--r-- | lib/type.h | 1 |
3 files changed, 0 insertions, 3 deletions
diff --git a/bird-gdb.py b/bird-gdb.py index 3cf65a9c..62c0ec87 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 425dfdd3..9dab1915 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", @@ -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, |