summaryrefslogtreecommitdiff
path: root/lib/vty.h
diff options
context:
space:
mode:
authorDaniel Walton <dwalton@cumulusnetworks.com>2015-07-27 20:30:22 -0700
committerDaniel Walton <dwalton@cumulusnetworks.com>2015-07-27 20:30:22 -0700
commit5689fe5fefdb6f9f4f5dcb73cc863f44db76aa78 (patch)
treeaa155c345c9f4f2e763827f9f19982103724d5b2 /lib/vty.h
parentd6db5772f41221c47761806121d8377db1418440 (diff)
Quagga processes should not die if they read an unrecognized line in
their config file Ticket: CM-6738 Reviewed By: Donald and Dinesh Testing Done: <DETAILED DESCRIPTION (REPLACE)>
Diffstat (limited to 'lib/vty.h')
-rw-r--r--lib/vty.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/vty.h b/lib/vty.h
index bce6c80bf1..e3ca3db038 100644
--- a/lib/vty.h
+++ b/lib/vty.h
@@ -49,6 +49,9 @@ struct vty
/* Command input buffer */
char *buf;
+ /* Command input error buffer */
+ char *error_buf;
+
/* Command cursor point */
int cp;