Skip to content

Commit

Permalink
Remove -I flag, which causes RasPi a FATAL error
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben Klaas committed Mar 27, 2023
1 parent f206650 commit 9b59992
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 9b59992

Please sign in to comment.