X-Git-Url: http://gitweb.michael.orlitzky.com/?p=haeredes.git;a=blobdiff_plain;f=src%2FMain.hs;fp=src%2FMain.hs;h=f5aef9aa92e433ee1bfb2351a360491c104e457d;hp=c9356bfd9318de6d96c279d0bd9dd0608fe9b332;hb=78aed23927af1734e0adf03095a617ba5ddbea01;hpb=2dd49227efae7fa0de2045b4dae36bbe30c3d65d diff --git a/src/Main.hs b/src/Main.hs index c9356bf..f5aef9a 100644 --- a/src/Main.hs +++ b/src/Main.hs @@ -9,7 +9,7 @@ import qualified Data.ByteString.Char8 as BS ( getContents, pack, words ) -import Data.List ( (\\), intersperse, sort ) +import Data.List ( (\\), intercalate, sort ) import Network.DNS ( DNSError(NameError), Domain, @@ -80,7 +80,7 @@ report delgts normalize_function (d, Right raw_hosts) = do -- Create one big string by joining together a list of smaller -- strings and placing a delimiter between them. join :: String -> [String] -> String - join delimiter strings = concat (intersperse delimiter strings) + join delimiter strings = intercalate delimiter strings main :: IO () @@ -142,6 +142,6 @@ main = do results <- parallelInterleaved actions -- Output the results. - _ <- mapM (report nrml_delegates normalize_function) results + mapM_ (report nrml_delegates normalize_function) results stopGlobalPool