[PATCH 1/2] bssgp: Fix output of the VTY 'show bssgp stats' command

This is merely a historical archive of years 2008-2021, before the migration to mailman3.

A maintained and still updated list archive can be found at https://lists.osmocom.org/hyperkitty/list/OpenBSC@lists.osmocom.org/.

Jacob Erlbeck jerlbeck at sysmocom.de
Wed Apr 29 13:00:29 UTC 2015


The output is terminated by a '\n' instead of VTY_NEWLINE.

This is fixed by the commit.

Sponsored-by: On-Waves ehf
---
 src/gb/gprs_bssgp_vty.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/gb/gprs_bssgp_vty.c b/src/gb/gprs_bssgp_vty.c
index 88ae49f..080867b 100644
--- a/src/gb/gprs_bssgp_vty.c
+++ b/src/gb/gprs_bssgp_vty.c
@@ -97,9 +97,10 @@ static void dump_bvc(struct vty *vty, struct bssgp_bvc_ctx *bvc, int stats)
 		if (fc)
 			vty_out(vty, "FC-BVC(bucket_max: %uoct, leak_rate: "
 				"%uoct/s, cur_tokens: %uoct, max_q_d: %u, "
-				"cur_q_d: %u)\n", fc->bucket_size_max,
+				"cur_q_d: %u)%s", fc->bucket_size_max,
 				fc->bucket_leak_rate, fc->bucket_counter,
-				fc->max_queue_depth, fc->queue_depth);
+				fc->max_queue_depth, fc->queue_depth,
+				VTY_NEWLINE);
 	}
 }
 
-- 
1.9.1




More information about the OpenBSC mailing list