Fix learning-switch STP breakage from "out_port" in flow stats request.
[sliver-openvswitch.git] / lib / dynamic-string.c
index f67a63f..2fe8cfb 100644 (file)
@@ -91,7 +91,7 @@ ds_put_char(struct ds *ds, char c)
 void
 ds_put_char_multiple(struct ds *ds, char c, size_t n)
 {
-    memset(ds_put_uninit(ds, n), ' ', n);
+    memset(ds_put_uninit(ds, n), c, n);
 }
 
 void