summaryrefslogtreecommitdiffstats
path: root/cmd-source-file.c
diff options
context:
space:
mode:
authortim <tim>2016-05-12 16:05:33 +0000
committertim <tim>2016-05-12 16:05:33 +0000
commitfdd368a2945f1f5cbd1cd2a858c00ebffdbf7e46 (patch)
treed25e3aaaa189854425bac52b23f64be81ebf461b /cmd-source-file.c
parent9715c61de0d7891cfe584ae1f63904a50abc2a54 (diff)
- Rework load_cfg() error handling a little.
- Add -q to source-file to suppress errors about nonexistent files. Input and OK nicm@
Diffstat (limited to 'cmd-source-file.c')
-rw-r--r--cmd-source-file.c20
1 files changed, 9 insertions, 11 deletions
diff --git a/cmd-source-file.c b/cmd-source-file.c
index d5f5209a..ecebbaca 100644
--- a/cmd-source-file.c
+++ b/cmd-source-file.c
@@ -34,8 +34,8 @@ const struct cmd_entry cmd_source_file_entry = {
.name = "source-file",
.alias = "source",
- .args = { "", 1, 1 },
- .usage = "path",
+ .args = { "q", 1, 1 },
+ .usage = "[-q] path",
.flags = 0,
.exec = cmd_source_file_exec
@@ -46,28 +46,26 @@ cmd_source_file_exec(struct cmd *self, struct cmd_q *cmdq)
{
struct args *args = self->args;
struct cmd_q *cmdq1;
- char *cause;
+ int quiet;
cmdq1 = cmdq_new(cmdq->client);
cmdq1->flags |= cmdq->flags & CMD_Q_NOHOOKS;
cmdq1->emptyfn = cmd_source_file_done;
cmdq1->data = cmdq;
- switch (load_cfg(args->argv[0], cmdq1, &cause)) {
+ quiet = args_has(args, 'q');
+ switch (load_cfg(args->argv[0], cmdq1, quiet)) {
case -1:
+ cmdq_free(cmdq1);
if (cfg_references == 0) {
- cmdq_free(cmdq1);
- cmdq_error(cmdq, "%s", cause);
- free(cause);
+ cfg_print_causes(cmdq);
return (CMD_RETURN_ERROR);
}
- cfg_add_cause("%s", cause);
- free(cause);
- /* FALLTHROUGH */
+ return (CMD_RETURN_NORMAL);
case 0:
+ cmdq_free(cmdq1);
if (cfg_references == 0)
cfg_print_causes(cmdq);
- cmdq_free(cmdq1);
return (CMD_RETURN_NORMAL);
}