From 0b3eed388c88576b947b64863d89bf102547cf07 Mon Sep 17 00:00:00 2001 From: Renato Westphal Date: Thu, 14 May 2020 16:49:33 -0300 Subject: [PATCH] lib: raise VTY_MAXCFGCHANGES to accommodate more complex commands Signed-off-by: Renato Westphal --- lib/vty.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vty.h b/lib/vty.h index 694aac3944..5d5676199b 100644 --- a/lib/vty.h +++ b/lib/vty.h @@ -43,7 +43,7 @@ extern "C" { #define VTY_MAXHIST 20 #define VTY_MAXDEPTH 8 -#define VTY_MAXCFGCHANGES 8 +#define VTY_MAXCFGCHANGES 16 struct vty_error { char error_buf[VTY_BUFSIZ];