summaryrefslogtreecommitdiffstats
path: root/net/l2tpv3.c
diff options
context:
space:
mode:
authorJason Wang2021-04-02 05:03:33 +0200
committerJason Wang2021-04-08 11:33:59 +0200
commit56e6f594bf47a0a543ff5e6d14701355fe99b098 (patch)
tree0b3ee5f7b43fde16795a00537796a87f0289d020 /net/l2tpv3.c
parentRevert "hmp: Use QAPI NetdevInfo in hmp_info_network" (diff)
downloadqemu-56e6f594bf47a0a543ff5e6d14701355fe99b098.tar.gz
qemu-56e6f594bf47a0a543ff5e6d14701355fe99b098.tar.xz
qemu-56e6f594bf47a0a543ff5e6d14701355fe99b098.zip
Revert "net: Move NetClientState.info_str to dynamic allocations"
Several issues has been reported for query-netdev info series. Consider it's late in the rc, this reverts commit commit 59b5437eb732d6b103a9bc279c3482c834d1eff9. Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'net/l2tpv3.c')
-rw-r--r--net/l2tpv3.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/net/l2tpv3.c b/net/l2tpv3.c
index 96611cb4af..8aa0a3e1a0 100644
--- a/net/l2tpv3.c
+++ b/net/l2tpv3.c
@@ -730,7 +730,8 @@ int net_init_l2tpv3(const Netdev *netdev,
QAPI_CLONE_MEMBERS(NetdevL2TPv3Options,
&nc->stored_config->u.l2tpv3, l2tpv3);
- s->nc.info_str = g_strdup_printf("l2tpv3: connected");
+ snprintf(s->nc.info_str, sizeof(s->nc.info_str),
+ "l2tpv3: connected");
return 0;
outerr:
qemu_del_net_client(nc);