From 6cca5c203ff0545ca42bb169f8ee58a93862efc0 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 17 Apr 2013 10:51:52 -0700 Subject: [PATCH] vconn: Fix formatting of user message. This corrects "version 0x03and earlier" to "version 0x03 and earlier". Signed-off-by: Ben Pfaff --- lib/vconn.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vconn.c b/lib/vconn.c index 449a36e90..15ac11909 100644 --- a/lib/vconn.c +++ b/lib/vconn.c @@ -461,7 +461,7 @@ version_bitmap_to_string(uint32_t bitmap) } else if (is_pow2((bitmap >> 1) + 1)) { ds_put_cstr(&s, "version "); ofputil_format_version(&s, leftmost_1bit_idx(bitmap)); - ds_put_cstr(&s, "and earlier"); + ds_put_cstr(&s, " and earlier"); } else { ds_put_cstr(&s, "versions "); ofputil_format_version_bitmap(&s, bitmap); -- 2.43.0