summaryrefslogtreecommitdiff
path: root/Utility/Gpg.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-06-20 13:13:40 -0400
committerGravatar Joey Hess <joey@kitenet.net>2012-06-20 13:13:40 -0400
commit75b6ee81f9d9b921106c829380e30445415ec2f7 (patch)
tree7cb7f30a4fc97c099df0b0aeec0376a696577a0b /Utility/Gpg.hs
parent6d641f1ac0059fc03c06e582739a96198bb4d5ee (diff)
avoid ByteString.Char8 where not needed
Its truncation behavior is a red flag, so avoid using it in these places where only raw ByteStrings are used, without looking at the data inside.
Diffstat (limited to 'Utility/Gpg.hs')
-rw-r--r--Utility/Gpg.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/Gpg.hs b/Utility/Gpg.hs
index ff6735ba5..e13afe5d4 100644
--- a/Utility/Gpg.hs
+++ b/Utility/Gpg.hs
@@ -7,7 +7,7 @@
module Utility.Gpg where
-import qualified Data.ByteString.Lazy.Char8 as L
+import qualified Data.ByteString.Lazy as L
import System.Posix.Types
import Control.Applicative
import Control.Concurrent