Various Changes
[tpg/acess2.git] / Kernel / system.c
index 26ce100..4dc92c8 100644 (file)
@@ -19,7 +19,6 @@ void  System_ExecuteScript();
  int   System_Int_GetString(char *Str, char **Dest);
 
 // === GLOBALS ===
-char   *gsInitPath = "/Acess/Bin/init";
 char   *gsConfigScript = "/Acess/Conf/BootConf.cfg";
 
 // === CODE ===
@@ -233,10 +232,10 @@ void System_ExecuteScript()
                }
                // - Load Module
                else if(strncmp("module ", fData+i, 6) == 0) {
+                       //char  *tmp;
                        i += 7;
                        i += System_Int_GetString(fData+i, &sArg1);
                        if(!sArg1)      goto read2eol;
-                       //Log("[CFG ] Load Module '%s'\n", sArg1);
                        Module_LoadFile(sArg1, "");     //!\todo Use the rest of the line as the argument string
                }
                // - Load Module

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