aboutsummaryrefslogtreecommitdiff
path: root/Limit.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2013-10-08 17:36:55 -0400
committerGravatar Joey Hess <joey@kitenet.net>2013-10-08 17:36:55 -0400
commit62ba14fe517bab8a14a05ff1be14fc148947fc10 (patch)
tree8a16fd416a9bc81b967a2d6fb9ba1f27ef2e69f0 /Limit.hs
parent92c4e5bffa7a82b78b5e5e79fa3d97f82d8dff0f (diff)
update for Duration type change
Diffstat (limited to 'Limit.hs')
-rw-r--r--Limit.hs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Limit.hs b/Limit.hs
index 71dbce168..826b5e72b 100644
--- a/Limit.hs
+++ b/Limit.hs
@@ -238,7 +238,8 @@ limitSize vs s = case readSize dataUnits s of
addTimeLimit :: String -> Annex ()
addTimeLimit s = do
- let seconds = fromMaybe (error "bad time-limit") $ parseDuration s
+ let seconds = maybe (error "bad time-limit") durationToPOSIXTime $
+ parseDuration s
start <- liftIO getPOSIXTime
let cutoff = start + seconds
addLimit $ Right $ const $ const $ do