From f3d47a5271ef3cbe5755d1dd51bd96508aa0c3bc Mon Sep 17 00:00:00 2001 From: midipix Date: Mon, 19 Feb 2024 02:16:22 +0000 Subject: library api's: _ectx_ (command execution context) namespace overhaul. --- src/logic/slbt_exec_install.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/logic/slbt_exec_install.c') diff --git a/src/logic/slbt_exec_install.c b/src/logic/slbt_exec_install.c index 7b30eb4..bca494b 100644 --- a/src/logic/slbt_exec_install.c +++ b/src/logic/slbt_exec_install.c @@ -59,7 +59,7 @@ static int slbt_exec_install_fail( int ret) { slbt_argv_free(meta); - slbt_free_exec_ctx(actx); + slbt_ectx_free_exec_ctx(actx); return ret; } @@ -736,13 +736,13 @@ int slbt_exec_install( /* context */ if (ectx) actx = 0; - else if ((ret = slbt_get_exec_ctx(dctx,&ectx))) + else if ((ret = slbt_ectx_get_exec_ctx(dctx,&ectx))) return ret; else actx = ectx; /* initial state, install mode skin */ - slbt_reset_arguments(ectx); + slbt_ectx_reset_arguments(ectx); slbt_disable_placeholders(ectx); iargv = ectx->cargv; fdout = slbt_driver_fdout(dctx); @@ -919,7 +919,7 @@ int slbt_exec_install( } slbt_argv_free(meta); - slbt_free_exec_ctx(actx); + slbt_ectx_free_exec_ctx(actx); return 0; } -- cgit v1.2.3