From 08cdb4cdb647c36ee1b21ece7021552f4c19aee9 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Wed, 15 Jan 2020 12:49:42 -0500 Subject: [PATCH] TT#74300 split intro for call-id CLI output Change-Id: I4872ce173372b767b467afd4122bba809f4f0c3e --- daemon/cli.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/daemon/cli.c b/daemon/cli.c index 71e32620a..97e28b2e6 100644 --- a/daemon/cli.c +++ b/daemon/cli.c @@ -614,8 +614,8 @@ static void cli_incoming_list_callid(str *instr, struct streambuf *replybuffer) } streambuf_printf(replybuffer, - "\ncallid: %60s | deletionmark:%4s | created:%12i | proxy:%s | tos:%u | last_signal:%llu | " - "redis_keyspace:%i | foreign:%s\n\n", + "\ncallid: %s\ndeletionmark: %s\ncreated: %i\nproxy: %s\ntos: %u\nlast_signal: %llu\n" + "redis_keyspace: %i\nforeign: %s\n\n", c->callid.s, c->ml_deleted ? "yes" : "no", (int) c->created.tv_sec, c->created_from, (unsigned int) c->tos, (unsigned long long) c->last_signal, c->redis_hosted_db, IS_FOREIGN_CALL(c) ? "yes" : "no");