diff options
-rw-r--r-- | Remote/Helper/Encryptable.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Remote/Helper/Encryptable.hs b/Remote/Helper/Encryptable.hs index 70e3663ea..29e51c002 100644 --- a/Remote/Helper/Encryptable.hs +++ b/Remote/Helper/Encryptable.hs @@ -143,7 +143,7 @@ cipherKey c k = fmap make <$> remoteCipher c where make ciphertext = (cipContent ciphertext, encryptKey mac ciphertext k) cipContent - | M.lookup "encryption" c /= Just "pubkey" = id + | M.lookup "encryption" c /= Just "pubkey" = id | otherwise = const $ Cipher "" mac = fromMaybe defaultMac $ M.lookup "mac" c >>= readMac |