summaryrefslogtreecommitdiffstats
path: root/cfg.c
diff options
context:
space:
mode:
authorTiago Cunha <tcunha@gmx.com>2010-12-30 22:26:07 +0000
committerTiago Cunha <tcunha@gmx.com>2010-12-30 22:26:07 +0000
commit210b4553a5d6b1147e8a51d47f6fb748b67e5676 (patch)
tree47e33e0cdb0d66621063904b209e520a97cb843a /cfg.c
parente0ad1e57064ca349ba84e34354cef253b11a0fce (diff)
Sync OpenBSD patchset 811:
Allow the config file parser and source-file to return "don't exit" to the client to let attach work from configuration files.
Diffstat (limited to 'cfg.c')
-rw-r--r--cfg.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/cfg.c b/cfg.c
index e78f4f5d..4e850905 100644
--- a/cfg.c
+++ b/cfg.c
@@ -1,4 +1,4 @@
-/* $Id: cfg.c,v 1.27 2010-06-06 00:04:18 tcunha Exp $ */
+/* $Id: cfg.c,v 1.28 2010-12-30 22:26:07 tcunha Exp $ */
/*
* Copyright (c) 2008 Nicholas Marriott <nicm@users.sourceforge.net>
@@ -80,6 +80,7 @@ load_cfg(const char *path, struct cmd_ctx *ctxin, struct causelist *causes)
size_t len;
struct cmd_list *cmdlist;
struct cmd_ctx ctx;
+ int retval;
if ((f = fopen(path, "rb")) == NULL) {
cfg_add_cause(causes, "%s: %s", path, strerror(errno));
@@ -88,6 +89,7 @@ load_cfg(const char *path, struct cmd_ctx *ctxin, struct causelist *causes)
n = 0;
line = NULL;
+ retval = 0;
while ((buf = fgetln(f, &len))) {
if (buf[len - 1] == '\n')
buf[len - 1] = '\0';
@@ -125,19 +127,17 @@ load_cfg(const char *path, struct cmd_ctx *ctxin, struct causelist *causes)
ctx.info = cfg_print;
cfg_cause = NULL;
- cmd_list_exec(cmdlist, &ctx);
+ if (cmd_list_exec(cmdlist, &ctx) == 1)
+ retval = 1;
cmd_list_free(cmdlist);
if (cfg_cause != NULL) {
cfg_add_cause(causes, "%s: %d: %s", path, n, cfg_cause);
xfree(cfg_cause);
- continue;
}
}
if (line != NULL)
xfree(line);
fclose(f);
- if (ARRAY_LENGTH(causes) != 0)
- return (-1);
- return (0);
+ return (retval);
}