Cat seems to hang forever

This commit is contained in:
2024-03-03 17:41:06 -05:00
parent 6700d98ad6
commit c6f9204014

View File

@@ -121,7 +121,9 @@ static void *worker_task(zsock_t *pipe, char *disk_path) {
case GUESTFS_COMMAND_CAT:
char *res;
size_t s;
puts("catting file...");
cat_file(g, command->args.cat.paths[0], &res, &s);
puts("Done catting file contents...");
zmsg_addmem(reply, res, s);
break;
}