summaryrefslogtreecommitdiff
path: root/Logs/Remote.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Logs/Remote.hs')
-rw-r--r--Logs/Remote.hs5
1 files changed, 2 insertions, 3 deletions
diff --git a/Logs/Remote.hs b/Logs/Remote.hs
index 8d15f3151..d9b41d8c4 100644
--- a/Logs/Remote.hs
+++ b/Logs/Remote.hs
@@ -73,14 +73,13 @@ configUnEscape = unescape
| c == '&' = entity rest
| otherwise = c : unescape rest
entity s = if ok
- then chr (read num) : unescape rest
+ then chr (Prelude.read num) : unescape rest
else '&' : unescape s
where
num = takeWhile isNumber s
r = drop (length num) s
rest = drop 1 r
- ok = not (null num) &&
- not (null r) && head r == ';'
+ ok = not (null num) && take 1 r == ";"
{- for quickcheck -}
prop_idempotent_configEscape :: String -> Bool