From bf14e7bd12f6f1038ecacedcb337e1dc65b39a6b Mon Sep 17 00:00:00 2001 From: TingPing Date: Sun, 29 Dec 2013 14:46:17 -0500 Subject: Load config from %LOCALAPPDATA%\redshift.conf on Windows --- src/config-ini.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/config-ini.c') diff --git a/src/config-ini.c b/src/config-ini.c index eae19c7..4541a0f 100644 --- a/src/config-ini.c +++ b/src/config-ini.c @@ -50,9 +50,9 @@ open_config_file(const char *filepath) snprintf(cp, sizeof(cp), "%s/redshift.conf", env); filepath = cp; #ifdef _WIN32 - } else if ((env = getenv("userprofile")) != NULL && env[0] != '\0') { + } else if ((env = getenv("localappdata")) != NULL && env[0] != '\0') { snprintf(cp, sizeof(cp), - "%s/.config/redshift.conf", env); + "%s\\redshift.conf", env); filepath = cp; #endif } else if ((env = getenv("HOME")) != NULL && env[0] != '\0') { -- cgit v1.2.3-70-g09d2