Skip to content
This repository has been archived by the owner on Sep 2, 2020. It is now read-only.

Fix logcat-json command to honor adb parameters #63

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd_logcat_json.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ logcat_json_main(const struct cmd_logcat_json_info* info)
struct strlist* args = strlist_new();
strlist_append(args, orig_argv0);
strlist_append(args, "shell");
strlist_xfer(args, make_args_cmd_shell(CMD_ARG_FORWARDED, &shcmdi));
strlist_xfer(args, make_args_cmd_shell(CMD_ARG_ALL, &shcmdi));

struct child_start_info csi = {
.io[STDIN_FILENO] = CHILD_IO_DEV_NULL,
Expand Down