diff options
author | Thomas Adam <thomas@xteddy.org> | 2016-05-12 18:01:10 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2016-05-12 18:01:10 +0100 |
commit | 6cb74f4b7dad1e21f2fb0714c7fe83a85bf92a2c (patch) | |
tree | df22b83d46308de5bf6815fff8f01778e5c83ab0 /cfg.c | |
parent | 3ec7e3c006d3eb86547b5a1b47dd8d873d7b0284 (diff) | |
parent | fdd368a2945f1f5cbd1cd2a858c00ebffdbf7e46 (diff) | |
download | rtmux-6cb74f4b7dad1e21f2fb0714c7fe83a85bf92a2c.tar.gz rtmux-6cb74f4b7dad1e21f2fb0714c7fe83a85bf92a2c.tar.bz2 rtmux-6cb74f4b7dad1e21f2fb0714c7fe83a85bf92a2c.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'cfg.c')
-rw-r--r-- | cfg.c | 24 |
1 files changed, 9 insertions, 15 deletions
@@ -47,8 +47,8 @@ set_cfg_file(const char *path) void start_cfg(void) { - char *cause = NULL; const char *home; + int quiet = 0; cfg_cmd_q = cmdq_new(NULL); cfg_cmd_q->emptyfn = cfg_default_done; @@ -60,28 +60,20 @@ start_cfg(void) if (cfg_client != NULL) cfg_client->references++; - if (access(TMUX_CONF, R_OK) == 0) { - if (load_cfg(TMUX_CONF, cfg_cmd_q, &cause) == -1) - cfg_add_cause("%s: %s", TMUX_CONF, cause); - } else if (errno != ENOENT) - cfg_add_cause("%s: %s", TMUX_CONF, strerror(errno)); + load_cfg(TMUX_CONF, cfg_cmd_q, 1); if (cfg_file == NULL && (home = find_home()) != NULL) { xasprintf(&cfg_file, "%s/.tmux.conf", home); - if (access(cfg_file, R_OK) != 0 && errno == ENOENT) { - free(cfg_file); - cfg_file = NULL; - } + quiet = 1; } - if (cfg_file != NULL && load_cfg(cfg_file, cfg_cmd_q, &cause) == -1) - cfg_add_cause("%s: %s", cfg_file, cause); - free(cause); + if (cfg_file != NULL) + load_cfg(cfg_file, cfg_cmd_q, quiet); cmdq_continue(cfg_cmd_q); } int -load_cfg(const char *path, struct cmd_q *cmdq, char **cause) +load_cfg(const char *path, struct cmd_q *cmdq, int quiet) { FILE *f; char delim[3] = { '\\', '\\', '\0' }; @@ -92,7 +84,9 @@ load_cfg(const char *path, struct cmd_q *cmdq, char **cause) log_debug("loading %s", path); if ((f = fopen(path, "rb")) == NULL) { - xasprintf(cause, "%s: %s", path, strerror(errno)); + if (errno == ENOENT && quiet) + return (0); + cfg_add_cause("%s: %s", path, strerror(errno)); return (-1); } |