]> gitweb @ CieloNegro.org - Lucu.git/blobdiff - Network/HTTP/Lucu/HttpVersion.hs
Implemented fallback handler.
[Lucu.git] / Network / HTTP / Lucu / HttpVersion.hs
index bd904e8c58b21bf5526620ffb1473d0d6f2af523..9bc1b819bc743033440c275d0cde40fa9b9e8bbb 100644 (file)
@@ -8,6 +8,7 @@ module Network.HTTP.Lucu.HttpVersion
     )
     where
 
+import qualified Data.ByteString.Char8 as C8
 import           Network.HTTP.Lucu.Parser
 import           System.IO
 
@@ -42,7 +43,7 @@ httpVersionP = do string "HTTP/"
 hPutHttpVersion :: Handle -> HttpVersion -> IO ()
 hPutHttpVersion h (HttpVersion maj min)
     = h `seq`
-      do hPutStr  h "HTTP/"
+      do C8.hPut  h (C8.pack "HTTP/")
          hPutStr  h (show maj)
          hPutChar h '.'
          hPutStr  h (show min)
\ No newline at end of file