summaryrefslogtreecommitdiff
path: root/Logs.hs
diff options
context:
space:
mode:
authorJoey Hess <joeyh@joeyh.name>2019-01-14 13:03:35 -0400
committerJoey Hess <joeyh@joeyh.name>2019-01-14 13:03:35 -0400
commitd3ab5e626b0614c209fffead77d27e40f599ead8 (patch)
treedc0fd9538267de416cd04457897628ce52580ffd /Logs.hs
parentff0a2bee2d4ee93afe8882f44b4cae2c29f0420a (diff)
rename key2file and file2key
What these generate is not really suitable to be used as a filename, which is why keyFile and fileKey further escape it. These are just serializing Keys. Also removed a quickcheck test that was very unlikely to test anything useful, since it relied on random chance creating something that looks like a serialized key. The other test is sufficient for testing what that was intended to test anyway.
Diffstat (limited to 'Logs.hs')
-rw-r--r--Logs.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Logs.hs b/Logs.hs
index 0af14eb26c..63d64efadd 100644
--- a/Logs.hs
+++ b/Logs.hs
@@ -124,7 +124,7 @@ urlLogFile config key = branchHashDir config key </> keyFile key ++ urlLogExt
{- Old versions stored the urls elsewhere. -}
oldurlLogs :: GitConfig -> Key -> [FilePath]
oldurlLogs config key =
- [ "remote/web" </> hdir </> key2file key ++ ".log"
+ [ "remote/web" </> hdir </> serializeKey key ++ ".log"
, "remote/web" </> hdir </> keyFile key ++ ".log"
]
where