diff options
author | Joey Hess <joey@kitenet.net> | 2012-01-19 16:07:36 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-01-19 16:07:36 -0400 |
commit | 06b0cb6224377fd2ea86e4e209e94a502f92716e (patch) | |
tree | ae6f1a631aebbdd18a2aef7ff7ec7299d9214d26 /Types/Remote.hs | |
parent | 94aa6b42b5bc5c37c7017fb3493010a56a9d211e (diff) |
add tmp flag parameter to retrieveKeyFile
Diffstat (limited to 'Types/Remote.hs')
-rw-r--r-- | Types/Remote.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Types/Remote.hs b/Types/Remote.hs index 216b34857..d524ea2ca 100644 --- a/Types/Remote.hs +++ b/Types/Remote.hs @@ -43,8 +43,8 @@ data RemoteA a = Remote { cost :: Int, -- Transfers a key to the remote. storeKey :: Key -> a Bool, - -- retrieves a key's contents to a file - retrieveKeyFile :: Key -> FilePath -> a Bool, + -- retrieves a key's contents to a file (possibly a tmp file) + retrieveKeyFile :: Key -> Bool -> FilePath -> a Bool, -- removes a key's contents removeKey :: Key -> a Bool, -- Checks if a key is present in the remote; if the remote |