Skip to content

Commit

Permalink
Bug fix from Lennart Augustsson.
Browse files Browse the repository at this point in the history
  • Loading branch information
solidsnack committed Jan 4, 2011
1 parent 8316388 commit 9b924e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion System/Info/MAC/Fetch.hs
Expand Up @@ -43,8 +43,9 @@ nixen = do
win32 :: IO (Maybe MAC)
win32 = do
(_, o, _, h) <- runInteractiveCommand "ipconfig /all"
waitForProcess h
outputs <- hGetContents o
seq (length outputs) (return ())
waitForProcess h
return $ join $ ipconfig outputs
where
-- Maybe we don't need this?
Expand Down
4 changes: 2 additions & 2 deletions maccatcher.cabal
@@ -1,10 +1,10 @@
name: maccatcher
version: 1.0.0
version: 1.0.1
category: Text
license: BSD3
license-file: LICENSE
author: Jason Dusek
maintainer: jason.dusek@gmail.com
maintainer: oss@solidsnack.be
synopsis: Obtain the host MAC address on *NIX and Windows.
description:
Obtain the host MAC address on *NIX and Windows.
Expand Down

0 comments on commit 9b924e4

Please sign in to comment.