--- deliantra/server/common/init.C 2006/12/30 10:16:10 1.18 +++ deliantra/server/common/init.C 2007/01/03 00:21:35 1.21 @@ -163,7 +163,7 @@ } -/* init_environ initializes values from the environmental variables. +/* init_environ initialises values from the environmental variables. * it needs to be called very early, since command line options should * overwrite these if specified. */ @@ -231,11 +231,11 @@ if (at->clone.type == MAP) { if (at->clone.race) - strcpy (first_map_ext_path, at->clone.race); + first_map_ext_path = at->clone.race; if (EXIT_PATH (&at->clone)) { - strcpy (first_map_path, EXIT_PATH (&at->clone)); + first_map_path = EXIT_PATH (&at->clone); return; } } @@ -271,7 +271,7 @@ } /* - * Initializes the gametime and TOD counters + * initialises the gametime and TOD counters * Called by init_library(). */ @@ -288,7 +288,7 @@ has_been_done = 1; sprintf (filename, "%s/clockdata", settings.localdir); - LOG (llevDebug, "Reading clockdata from %s...", filename); + LOG (llevDebug, "Reading clockdata from %s...\n", filename); if ((fp = fopen (filename, "r")) == NULL) { LOG (llevError, "Can't open %s.\n", filename); @@ -302,7 +302,7 @@ } /* - * Initializes the attack messages. + * initialises the attack messages. * Called by init_library(). */ @@ -325,7 +325,7 @@ has_been_done = 1; sprintf (filename, "%s/attackmess", settings.datadir); - LOG (llevDebug, "Reading attack messages from %s...", filename); + LOG (llevDebug, "Reading attack messages from %s...\n", filename); if ((fp = open_and_uncompress (filename, 0, &comp)) == NULL) { LOG (llevError, "Can't open %s.\n", filename);