diff options
| author | Philippe Guibert <philippe.guibert@6wind.com> | 2024-10-25 10:23:54 +0200 | 
|---|---|---|
| committer | Philippe Guibert <philippe.guibert@6wind.com> | 2024-10-25 22:17:29 +0200 | 
| commit | 8e861a75e8b426f0944157387699fe1ab322fe8e (patch) | |
| tree | f9081894c75354c409b63d376a433000a22f92e2 /yang/frr-isisd.yang | |
| parent | 3f446ecb6b58fc8aabb431975ab941c80513a4c7 (diff) | |
isisd: fix change flex-algorithm number from uint32 to uint8
The algorithm number is encoded on 8 bits and does not require
an unsigned 32 bit value to store the value.
Fixes: cc4926c1284e ("isisd,yang: add algorithm-prefix-sid configuration tree")
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'yang/frr-isisd.yang')
| -rw-r--r-- | yang/frr-isisd.yang | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/yang/frr-isisd.yang b/yang/frr-isisd.yang index 60914b0be9..a3e073f626 100644 --- a/yang/frr-isisd.yang +++ b/yang/frr-isisd.yang @@ -1922,7 +1922,7 @@ module frr-isisd {                 if set to disable, ISISEXPLICITNULLFlag                 will override the value of ISISPHPFlag";              leaf algo { -              type uint32 { +              type uint8 {                  range "128..255";                }                description  | 
