diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-10-06 16:04:03 +0200 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-10-26 17:12:34 +0100 |
| commit | 903ad92ca4d161eba58eb58b3fddbf156dc64d0c (patch) | |
| tree | be3d709c20e7a501cd0772b8c3b662cd05d6461b /isisd | |
| parent | e53dac2fb35db883123cfc1f566b992264aac9c2 (diff) | |
isisd/fabricd: use PROTO_NAME in SR code
The IS-IS SR code was missing a use of `PROTO_NAME`, making fabricd
collide with the isisd CLI command.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'isisd')
| -rw-r--r-- | isisd/isis_sr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/isisd/isis_sr.c b/isisd/isis_sr.c index f70840a637..707bd162f5 100644 --- a/isisd/isis_sr.c +++ b/isisd/isis_sr.c @@ -1057,8 +1057,9 @@ static void show_node(struct vty *vty, struct isis_area *area, int level) } DEFUN(show_sr_node, show_sr_node_cmd, - "show isis segment-routing node", - SHOW_STR PROTO_HELP + "show " PROTO_NAME " segment-routing node", + SHOW_STR + PROTO_HELP "Segment-Routing\n" "Segment-Routing node\n") { |
