[sword-svn] r2416 - trunk/utilities

benpmorgan at crosswire.org benpmorgan at crosswire.org
Sun May 17 18:43:44 MST 2009


Author: benpmorgan
Date: 2009-05-17 18:43:43 -0700 (Sun, 17 May 2009)
New Revision: 2416

Modified:
   trunk/utilities/osis2mod.cpp
Log:
Fix bug where it defaulted to LZSS compressed modules.



Modified: trunk/utilities/osis2mod.cpp
===================================================================
--- trunk/utilities/osis2mod.cpp	2009-05-15 21:37:16 UTC (rev 2415)
+++ trunk/utilities/osis2mod.cpp	2009-05-18 01:43:43 UTC (rev 2416)
@@ -1476,7 +1476,7 @@
         if (compType == "ZIP") {
                 compressor = new ZipCompress();
         }
-        else if (compType = "LZSS") {
+        else if (compType == "LZSS") {
                 compressor = new LZSSCompress();
         }
 




More information about the sword-cvs mailing list