dns 2.0.11 → 2.0.12
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Network/DNS/Resolver.hs +2/−2
- dns.cabal +1/−1
Network/DNS/Resolver.hs view
@@ -443,8 +443,8 @@ -- Windows does not support sendAll in Network.ByteString.Lazy. -- This implements sendAll with Haskell Strings. sendAll sock bs = do-sent <- send sock (LB.unpack bs)-when (sent < fromIntegral (LB.length bs)) $ sendAll sock (LB.drop (fromIntegral sent) bs)+ sent <- send sock (LB.unpack bs)+ when (sent < fromIntegral (LB.length bs)) $ sendAll sock (LB.drop (fromIntegral sent) bs) #endif isIllegal :: Domain -> Bool
dns.cabal view
@@ -1,5 +1,5 @@ Name: dns-Version: 2.0.11+Version: 2.0.12 Author: Kazu Yamamoto <kazu@iij.ad.jp> Maintainer: Kazu Yamamoto <kazu@iij.ad.jp> License: BSD3