Signed-off-by: Miguel Di Ciurcio Filho <miguel.fi...@gmail.com> --- net/dump.c | 8 ++++++-- 1 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/net/dump.c b/net/dump.c index 6db7ecf..dea7f7d 100644 --- a/net/dump.c +++ b/net/dump.c @@ -27,6 +27,9 @@ #include "sysemu.h" #include "qemu-error.h" #include "qemu-log.h" +#include "qdict.h" +#include "qstring.h" +#include "qint.h" typedef struct DumpState { VLANClientState nc; @@ -128,8 +131,9 @@ static int net_dump_init(VLANState *vlan, const char *device, nc = qemu_new_net_client(&net_dump_info, vlan, NULL, device, name); - snprintf(nc->info_str, sizeof(nc->info_str), - "dump to %s (len=%d)", filename, len); + nc->info_dict = qdict_new(); + qdict_put(nc->info_dict, "filename", qstring_from_str(filename)); + qdict_put(nc->info_dict, "len", qint_from_int(len)); s = DO_UPCAST(DumpState, nc, nc); -- 1.7.0.4