diff options
author | Nicholas Marriott <nicm@openbsd.org> | 2013-04-24 10:01:32 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@openbsd.org> | 2013-04-24 10:01:32 +0000 |
commit | e323101edede281b65e3c7141d79afdb2501a8ea (patch) | |
tree | 2a187fa8243af48d4b7195caa798be19da318a38 /tmux.c | |
parent | 3d2b7d5bce9532cedd647ace319afbf95ebe0e20 (diff) | |
download | rtmux-e323101edede281b65e3c7141d79afdb2501a8ea.tar.gz rtmux-e323101edede281b65e3c7141d79afdb2501a8ea.tar.bz2 rtmux-e323101edede281b65e3c7141d79afdb2501a8ea.zip |
Rename global configuration define.
Diffstat (limited to 'tmux.c')
-rw-r--r-- | tmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -357,7 +357,7 @@ main(int argc, char **argv) if (pw != NULL) home = pw->pw_dir; } - xasprintf(&cfg_file, "%s/%s", home, DEFAULT_CFG); + xasprintf(&cfg_file, "%s/.tmux.conf", home); if (access(cfg_file, R_OK) != 0 && errno == ENOENT) { free(cfg_file); cfg_file = NULL; |