of an IP address to be used, while denying use of other ports.
* Bugfix to getting content from an export remote with -J, when the
export database was not yet populated.
+ * info: Fix display of the encryption value.
+ (Some debugging junk had crept in.)
-- Joey Hess <id@joeyh.name> Wed, 19 Feb 2020 12:48:58 -0400
describeEncryption :: ParsedRemoteConfig -> String
describeEncryption c = case extractCipher c of
- Nothing -> "none" ++ show (getRemoteConfigValue cipherField c :: Maybe String) ++ show (M.keys c)
+ Nothing -> "none"
Just cip -> nameCipher cip ++ " (" ++ describeCipher cip ++ ")"
nameCipher :: StorableCipher -> String