pass startup_tcl to command_init
Removes external linkage from helper module, making the startup code a parameter to a new command context's initialization routine.
This commit is contained in:
@@ -766,10 +766,9 @@ COMMAND_HANDLER(handle_fast_command)
|
||||
}
|
||||
|
||||
|
||||
struct command_context* command_init()
|
||||
struct command_context* command_init(const char *startup_tcl)
|
||||
{
|
||||
struct command_context* context = malloc(sizeof(struct command_context));
|
||||
extern const char startup_tcl[];
|
||||
const char *HostOs;
|
||||
|
||||
context->mode = COMMAND_EXEC;
|
||||
|
||||
Reference in New Issue
Block a user