Review: Needs Fixing

There's a bug that arises in Windows in archive_module.cpp lines 309 to 312 
from this

      if (theCompression != "GZIP" &&
#ifndef WIN32
          theCompression != "BZIP2" &&
          theCompression != "LZMA"
#endif
        )

to this 

      if (theCompression != "GZIP" 
#ifndef WIN32
          && theCompression != "BZIP2"
          && theCompression != "LZMA"
#endif
        )
-- 
https://code.launchpad.net/~zorba-coders/zorba/fix-archive-dateTime/+merge/117977
Your team Zorba Coders is subscribed to branch lp:zorba.

-- 
Mailing list: https://launchpad.net/~zorba-coders
Post to     : zorba-coders@lists.launchpad.net
Unsubscribe : https://launchpad.net/~zorba-coders
More help   : https://help.launchpad.net/ListHelp

Reply via email to