diff options
author | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-03-02 02:45:55 +0100 |
---|---|---|
committer | Quentin Young <qlyoung@cumulusnetworks.com> | 2017-03-02 03:09:00 +0100 |
commit | 94c6042452e3abaca5afe3f42d0257f76be83bac (patch) | |
tree | a3d186e1fb1f943bccd8430094a33f4a74ad3621 /bgpd/bgpd.h | |
parent | lib: add stream.h, vty.h, zebra.h to plist.h (diff) | |
download | frr-94c6042452e3abaca5afe3f42d0257f76be83bac.tar.xz frr-94c6042452e3abaca5afe3f42d0257f76be83bac.zip |
bgpd: add vty.h to bgpd.h
`struct vty` referenced in body of bgpd.h, so it should be #include'd.
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to '')
-rw-r--r-- | bgpd/bgpd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/bgpd/bgpd.h b/bgpd/bgpd.h index 09c64aa33..54bb55749 100644 --- a/bgpd/bgpd.h +++ b/bgpd/bgpd.h @@ -24,6 +24,7 @@ Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA #include "qobj.h" #include "lib/json.h" #include "vrf.h" +#include "vty.h" /* For union sockunion. */ #include "queue.h" |