summaryrefslogtreecommitdiff
path: root/vrrpd/vrrp_zebra.c
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2019-01-29 19:59:01 +0000
committerQuentin Young <qlyoung@cumulusnetworks.com>2019-05-17 00:27:08 +0000
commit63d4bd12ca9a7fc666dcd112c940f4ac693b32ae (patch)
tree7ea0c8ee29499c0e26a235b74b8fbfbf86ebf77a /vrrpd/vrrp_zebra.c
parent5302f67b1300219479edded34e01126691a9f689 (diff)
vrrpd: fix headers
* Add include guards where missing * Add include guard comments where missing * Fix copyright notices * Sort includes Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'vrrpd/vrrp_zebra.c')
-rw-r--r--vrrpd/vrrp_zebra.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/vrrpd/vrrp_zebra.c b/vrrpd/vrrp_zebra.c
index 1c4b0a3828..1bd5aa013f 100644
--- a/vrrpd/vrrp_zebra.c
+++ b/vrrpd/vrrp_zebra.c
@@ -1,7 +1,7 @@
/*
- * Zebra interfacing
- * Copyright (C) 2018 Cumulus Networks, Inc.
- * Quentin Young
+ * VRRP Zebra interfacing.
+ * Copyright (C) 2018-2019 Cumulus Networks, Inc.
+ * Quentin Young
*
* This program is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the Free
@@ -20,11 +20,11 @@
#include <zebra.h>
#include "lib/if.h"
+#include "lib/linklist.h"
#include "lib/log.h"
#include "lib/prefix.h"
-#include "lib/zclient.h"
#include "lib/vty.h"
-#include "lib/linklist.h"
+#include "lib/zclient.h"
#include "vrrp.h"
#include "vrrp_zebra.h"