From befb4cbdc31a20dd721ef43eaefc3d1b23521c2e Mon Sep 17 00:00:00 2001 From: Justin Pettit Date: Wed, 7 May 2008 15:35:53 -0700 Subject: [PATCH] Fixed problem where the first line of a stats reply message was not showing up on its own line. --- lib/ofp-print.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ofp-print.c b/lib/ofp-print.c index b875ec41..142943fb 100644 --- a/lib/ofp-print.c +++ b/lib/ofp-print.c @@ -642,7 +642,7 @@ print_stats(struct ds *string, int type, const void *body, size_t body_len, return; } s = &stats_types[type]; - ds_put_format(string, " type=%d(%s)", type, s->name); + ds_put_format(string, " type=%d(%s)\n", type, s->name); m = direction == REQUEST ? &s->request : &s->reply; if (body_len < m->min_body || body_len > m->max_body) { -- 2.30.2