summaryrefslogtreecommitdiff
path: root/tests/bgpd/test_capability.c
diff options
context:
space:
mode:
authorQuentin Young <qlyoung@cumulusnetworks.com>2017-09-08 11:51:12 -0400
committerQuentin Young <qlyoung@cumulusnetworks.com>2017-11-30 16:18:05 -0500
commitbecedef6c3d836f7981369db90d3f31b1f235f5d (patch)
treefe28ef351082b7f75b74e74bb7348eaf657a6ff1 /tests/bgpd/test_capability.c
parent85145b6264482697a8a9cc7e261b65d99b06444a (diff)
bgpd, tests: comment formatting
Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com>
Diffstat (limited to 'tests/bgpd/test_capability.c')
-rw-r--r--tests/bgpd/test_capability.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/bgpd/test_capability.c b/tests/bgpd/test_capability.c
index cf3c36804b..a5092708e2 100644
--- a/tests/bgpd/test_capability.c
+++ b/tests/bgpd/test_capability.c
@@ -866,11 +866,11 @@ static void parse_test(struct peer *peer, struct test_segment *t, int type)
failed++;
}
- /* Some of the functions used return BGP_Stop on error and some return
- * -1. If
- * we have -1, keep it; if we have BGP_Stop, transform it to the correct
- * pass/fail code */
-
+ /*
+ * Some of the functions used return BGP_Stop on error and some return
+ * -1. If we have -1, keep it; if we have BGP_Stop, transform it to the
+ * correct pass/fail code
+ */
if (ret != -1)
ret = (ret == BGP_Stop) ? -1 : 0;