diff options
author | Joey Hess <joeyh@joeyh.name> | 2015-04-03 15:33:28 -0400 |
---|---|---|
committer | Joey Hess <joeyh@joeyh.name> | 2015-04-03 15:35:18 -0400 |
commit | 141937ed091643e2c47207f3818f46c7cf341189 (patch) | |
tree | 102dfcdef294cdc0ca6404232962749d213fac41 /Utility/Gpg.hs | |
parent | fff817f70ce3c86d873775c0d113b074cc486ff8 (diff) |
rename bothHandles -> ioHandles
Diffstat (limited to 'Utility/Gpg.hs')
-rw-r--r-- | Utility/Gpg.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/Gpg.hs b/Utility/Gpg.hs index 37508a495..3112db1bd 100644 --- a/Utility/Gpg.hs +++ b/Utility/Gpg.hs @@ -87,7 +87,7 @@ readStrict params = do pipeStrict :: [CommandParam] -> String -> IO String pipeStrict params input = do params' <- stdParams params - withBothHandles createProcessSuccess (proc gpgcmd params') $ \(to, from) -> do + withIOHandles createProcessSuccess (proc gpgcmd params') $ \(to, from) -> do hSetBinaryMode to True hSetBinaryMode from True hPutStr to input |