vconn: Fix formatting of user message.
authorBen Pfaff <blp@nicira.com>
Wed, 17 Apr 2013 17:51:52 +0000 (10:51 -0700)
committerBen Pfaff <blp@nicira.com>
Sat, 29 Jun 2013 04:02:43 +0000 (21:02 -0700)
This corrects "version 0x03and earlier" to "version 0x03 and earlier".

Signed-off-by: Ben Pfaff <blp@nicira.com>
lib/vconn.c

index 449a36e..15ac119 100644 (file)
@@ -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);