aboutsummaryrefslogtreecommitdiffstats
path: root/src/config-ini.c
diff options
context:
space:
mode:
authorTingPing <TingPing@users.noreply.github.com>2013-12-29 14:46:17 -0500
committerTingPing <TingPing@users.noreply.github.com>2013-12-29 14:46:17 -0500
commitbf14e7bd12f6f1038ecacedcb337e1dc65b39a6b (patch)
tree1c055197947d60ca686e3a2d373baf672557b4a8 /src/config-ini.c
parentUpdate translation files (diff)
downloadredshift-ng-bf14e7bd12f6f1038ecacedcb337e1dc65b39a6b.tar.gz
redshift-ng-bf14e7bd12f6f1038ecacedcb337e1dc65b39a6b.tar.bz2
redshift-ng-bf14e7bd12f6f1038ecacedcb337e1dc65b39a6b.tar.xz
Load config from %LOCALAPPDATA%\redshift.conf on Windows
Diffstat (limited to 'src/config-ini.c')
-rw-r--r--src/config-ini.c4
1 files changed, 2 insertions, 2 deletions
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') {