Do not strvis output to terminal from commands.

This commit is contained in:
nicm
2024-11-22 12:58:05 +00:00
parent 64d82d5988
commit 5fd45b3892
3 changed files with 5 additions and 5 deletions

View File

@ -102,7 +102,7 @@ cmd_save_buffer_exec(struct cmd *self, struct cmdq_item *item)
if (evb == NULL)
fatalx("out of memory");
evbuffer_add(evb, bufdata, bufsize);
cmdq_print_data(item, 1, evb);
cmdq_print_data(item, evb);
evbuffer_free(evb);
return (CMD_RETURN_NORMAL);
}