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");