--- deliantra/server/common/init.C 2006/12/30 10:16:10 1.18 +++ deliantra/server/common/init.C 2007/01/06 14:42:28 1.22 @@ -1,6 +1,7 @@ /* CrossFire, A Multiplayer game for X-windows + Copyright (C) 2005, 2006, 2007 Marc Lehmann & Crossfire+ Development Team Copyright (C) 2002 Mark Wedel & Crossfire Development Team Copyright (C) 1992 Frank Tore Johansen @@ -163,7 +164,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 +232,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 +272,7 @@ } /* - * Initializes the gametime and TOD counters + * initialises the gametime and TOD counters * Called by init_library(). */ @@ -288,7 +289,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 +303,7 @@ } /* - * Initializes the attack messages. + * initialises the attack messages. * Called by init_library(). */ @@ -325,7 +326,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);