diff options
| author | Donald Sharp <donaldsharp72@gmail.com> | 2023-08-25 17:33:52 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-25 17:33:52 -0400 | 
| commit | 4d22b41321944143096320069e181589896632ef (patch) | |
| tree | a8b64551b16f89a2bff0236fb1b6e6261eec1127 /zebra/zebra_rib.c | |
| parent | 834463a41245e49ead35ddc6e652e790c2cc7dce (diff) | |
| parent | 4d96ce1b4d7f45aa3fc792d882040031548cd812 (diff) | |
Merge pull request #14256 from rodecker/rt-table-id
zebra: Make main routing table (RT_TABLE_MAIN) configurable
Diffstat (limited to 'zebra/zebra_rib.c')
| -rw-r--r-- | zebra/zebra_rib.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/zebra/zebra_rib.c b/zebra/zebra_rib.c index 9f1fd03df5..5a32cf6bb9 100644 --- a/zebra/zebra_rib.c +++ b/zebra/zebra_rib.c @@ -365,7 +365,7 @@ int is_zebra_valid_kernel_table(uint32_t table_id)  int is_zebra_main_routing_table(uint32_t table_id)  { -	if (table_id == RT_TABLE_MAIN) +	if (table_id == rt_table_main_id)  		return 1;  	return 0;  }  | 
