aboutsummaryrefslogtreecommitdiff
path: root/src/sman/sman.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sman/sman.c')
-rw-r--r--src/sman/sman.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sman/sman.c b/src/sman/sman.c
index 1b2a243a..1efe4c5c 100644
--- a/src/sman/sman.c
+++ b/src/sman/sman.c
@@ -543,9 +543,9 @@ fork_Axiom(Command* cmd)
/* Tell the Core that it is being invoked in server mode. */
oa_allocate_process_argv(&cmd->core, 2);
- cmd->core.argv[0] = (char*) make_path_for(cmd->root_dir, core_driver);
+ cmd->core.argv[0] = (char*) make_path_for(cmd->root_dir, Driver::core);
cmd->core.argv[1] = (char*) "--role=server";
- execute_core(cmd, core_driver);
+ execute_core(cmd, Driver::core);
}
}