From: Ben Pfaff Date: Wed, 17 Apr 2013 17:51:52 +0000 (-0700) Subject: vconn: Fix formatting of user message. X-Git-Tag: sliver-openvswitch-1.10.90-3~4^2~10 X-Git-Url: http://git.onelab.eu/?p=sliver-openvswitch.git;a=commitdiff_plain;h=6cca5c203ff0545ca42bb169f8ee58a93862efc0 vconn: Fix formatting of user message. This corrects "version 0x03and earlier" to "version 0x03 and earlier". Signed-off-by: Ben Pfaff --- 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);