Fixed test mode defaulting to on when invalid value
authorJohn Hodge <[email protected]>
Tue, 17 Jan 2012 10:06:46 +0000 (18:06 +0800)
committerJohn Hodge <[email protected]>
Tue, 17 Jan 2012 10:06:46 +0000 (18:06 +0800)
src/server/main.c

index f2f66c3..b8fe7e1 100644 (file)
@@ -123,7 +123,7 @@ int main(int argc, char *argv[])
        giServer_Port        = Config_GetValue_Int("server_port", 0);
        gsItemListFile       = Config_GetValue("items_file", 0);
 
-       gbNoCostMode         = Config_GetValue_Bool("test_mode", 0);
+       gbNoCostMode         = (Config_GetValue_Bool("test_mode", 0) == 1);
 
        signal(SIGINT, sigint_handler);
        signal(SIGTERM, sigint_handler);

UCC git Repository :: git.ucc.asn.au