Skip to content

Commit

Permalink
Merge pull request #364 from IMLS/fix_tshark_fail
Browse files Browse the repository at this point in the history
Remove -I flag, which causes RasPi a FATAL error
  • Loading branch information
Ben Klaas authored Mar 27, 2023
2 parents b927d2f + 9b59992 commit 124bd32
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ func TSharkRunner(adapter string) []string {
tsharkCmd := exec.Command(
config.GetWiresharkPath(),
"-a", fmt.Sprintf("duration:%d", config.GetWiresharkDuration()),
"-I", "-i", adapter,
"-i", adapter,
"-Tfields", "-e", "wlan.sa")

tsharkOut, err := tsharkCmd.StdoutPipe()
Expand Down

0 comments on commit 124bd32

Please sign in to comment.