aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--main/cli.c3
-rw-r--r--main/loader.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/main/cli.c b/main/cli.c
index c1b4a62f2..33cd3c682 100644
--- a/main/cli.c
+++ b/main/cli.c
@@ -163,6 +163,7 @@ static char *handle_load(struct ast_cli_entry *e, int cmd, struct ast_cli_args *
ast_cli(a->fd, "Unable to load module %s\n", a->argv[e->args]);
return CLI_FAILURE;
}
+ ast_cli(a->fd, "Loaded %s\n", a->argv[e->args]);
return CLI_SUCCESS;
}
@@ -424,7 +425,9 @@ static char *handle_unload(struct ast_cli_entry *e, int cmd, struct ast_cli_args
ast_cli(a->fd, "Unable to unload resource %s\n", a->argv[x]);
return CLI_FAILURE;
}
+ ast_cli(a->fd, "Unloaded %s\n", a->argv[x]);
}
+
return CLI_SUCCESS;
}
diff --git a/main/loader.c b/main/loader.c
index 0c8f306c1..dd4ea4d18 100644
--- a/main/loader.c
+++ b/main/loader.c
@@ -508,7 +508,7 @@ int ast_unload_resource(const char *resource_name, enum ast_module_unload_mode f
if (!(mod = find_resource(resource_name, 0))) {
AST_LIST_UNLOCK(&module_list);
ast_log(LOG_WARNING, "Unload failed, '%s' could not be found\n", resource_name);
- return 0;
+ return -1;
}
if (!(mod->flags.running || mod->flags.declined))