diff options
author | Will Thompson <will@willthompson.co.uk> | 2018-11-22 13:49:41 +0000 |
---|---|---|
committer | Will Thompson <will@willthompson.co.uk> | 2018-11-22 13:49:41 +0000 |
commit | c73a89d76cadbbf104ba7e5cdf005459bdf5e9eb (patch) | |
tree | 58dc8cbcacc627007a7cc053328d33e9eda0a3e2 | |
parent | c2dfe9aead23f1c16d606cdfbc240dd313c824df (diff) |
Use .pcap extension by default
-rw-r--r-- | Bustle/UI.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bustle/UI.hs b/Bustle/UI.hs index 67583d6..d8029ac 100644 --- a/Bustle/UI.hs +++ b/Bustle/UI.hs @@ -343,7 +343,7 @@ startRecording target = do let yyyy_mm_dd_hh_mm_ss = takeWhile (/= '.') (show zt) cacheDir <- io getCacheDir - let filename = cacheDir </> yyyy_mm_dd_hh_mm_ss <.> "bustle" + let filename = cacheDir </> yyyy_mm_dd_hh_mm_ss <.> "pcap" let title = printf (__ "Recording %s…") $ case target of Left BusTypeNone -> error "whoops, this value shouldn't exist" |