commit debb0d6bc198e13ef019b141029cdc62a7087532
parent 39bcad23dd02d7e477bc4bfc1977c1f08108dcad
Author: Drew DeVault <sir@cmpwn.com>
Date: Tue, 18 Aug 2015 06:53:02 -0400
Fix #64
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/sway/config.c b/sway/config.c
@@ -40,7 +40,7 @@ static char* get_config_path() {
} else {
name = "/sway/config";
temp = malloc(strlen(xdg_config_home) + strlen(name) + 1);
- strcpy(temp, home);
+ strcpy(xdg_config_home, home);
strcat(temp, name);
}
if (exists(temp)) {
@@ -93,7 +93,7 @@ static char* get_config_path() {
} else {
name = "/i3/config";
temp = malloc(strlen(xdg_config_home) + strlen(name) + 1);
- strcpy(temp, home);
+ strcpy(xdg_config_home, home);
strcat(temp, name);
}
if (exists(temp)) {