From ac0415fac89b186638fbcee1ab9f2cc5cb6d2824 Mon Sep 17 00:00:00 2001 From: Paul Vinciguerra Date: Wed, 5 May 2021 00:19:00 -0400 Subject: [PATCH] api: fix crash in custom dump Change-Id: Iffc52b4f52c235b0b5d13d2b42467cb2be0bf934 Type: fix Signed-off-by: Paul Vinciguerra --- src/vpp/api/custom_dump.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vpp/api/custom_dump.c b/src/vpp/api/custom_dump.c index 339e7a3f69d..f56787944bd 100644 --- a/src/vpp/api/custom_dump.c +++ b/src/vpp/api/custom_dump.c @@ -2390,7 +2390,7 @@ static void *vl_api_pg_capture_t_print s = format (0, "SCRIPT: pg_capture "); s = format (s, "if_id %d ", (mp->interface_id)); - s = format (s, "pcap %s", mp->pcap_file_name); + s = format (s, "pcap %U", vl_api_format_string, &mp->pcap_file_name); if (mp->count != ~0) s = format (s, "count %d ", (mp->count)); if (!mp->is_enabled) -- 2.16.6