[ovs-dev] [of1.1 1/8] vconn: Fix formatting of user message.

Ben Pfaff blp at nicira.com
Wed Apr 17 20:37:48 UTC 2013


This corrects "version 0x03and earlier" to "version 0x03 and earlier".

Signed-off-by: Ben Pfaff <blp at nicira.com>
---
 lib/vconn.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/lib/vconn.c b/lib/vconn.c
index bf40b1b..cc3d36e 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);
-- 
1.7.2.5




More information about the dev mailing list