aboutsummaryrefslogtreecommitdiffstats
path: root/src/config-ini.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-03-11 18:19:47 +0100
committerMattias Andrée <maandree@operamail.com>2014-03-11 18:20:35 +0100
commitbb155ac18597f0b91c7cc7c612286b70bd943815 (patch)
treebf4efedcaea9f4b107ab53e87b4e0bd52e80da01 /src/config-ini.c
parentAdd src/redshift to .gitignore (diff)
downloadredshift-ng-bb155ac18597f0b91c7cc7c612286b70bd943815.tar.gz
redshift-ng-bb155ac18597f0b91c7cc7c612286b70bd943815.tar.bz2
redshift-ng-bb155ac18597f0b91c7cc7c612286b70bd943815.tar.xz
When looking for a redshift.conf file do not just check environment variable, also check that the file exists
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/config-ini.c')
-rw-r--r--src/config-ini.c30
1 files changed, 21 insertions, 9 deletions
diff --git a/src/config-ini.c b/src/config-ini.c
index 3183ba1..8449a8d 100644
--- a/src/config-ini.c
+++ b/src/config-ini.c
@@ -22,9 +22,11 @@
#include <stdlib.h>
#include <string.h>
#include <errno.h>
+#include <sys/types.h>
+#include <sys/stat.h>
+#include <unistd.h>
#ifndef _WIN32
# include <pwd.h>
-# include <unistd.h>
#endif
#include "config-ini.h"
@@ -48,28 +50,38 @@ open_config_file(const char *filepath)
if (filepath == NULL) {
char cp[MAX_CONFIG_PATH];
char *env;
+ struct stat attr;
- if ((env = getenv("XDG_CONFIG_HOME")) != NULL &&
+ if (filepath == NULL && (env = getenv("XDG_CONFIG_HOME")) != NULL &&
env[0] != '\0') {
snprintf(cp, sizeof(cp), "%s/redshift.conf", env);
- filepath = cp;
+ if (!stat(cp, &attr))
+ filepath = cp;
+ }
#ifdef _WIN32
- } else if ((env = getenv("localappdata")) != NULL && env[0] != '\0') {
+ if (filepath == NULL && (env = getenv("localappdata")) != NULL &&
+ env[0] != '\0') {
snprintf(cp, sizeof(cp),
"%s\\redshift.conf", env);
- filepath = cp;
+ if (!stat(cp, &attr))
+ filepath = cp;
+ }
#endif
- } else if ((env = getenv("HOME")) != NULL && env[0] != '\0') {
+ if (filepath == NULL && (env = getenv("HOME")) != NULL &&
+ env[0] != '\0') {
snprintf(cp, sizeof(cp),
"%s/.config/redshift.conf", env);
- filepath = cp;
+ if (!stat(cp, &attr))
+ filepath = cp;
+ }
#ifndef _WIN32
- } else {
+ if (filepath == NULL) {
struct passwd *pwd = getpwuid(getuid());
char *home = pwd->pw_dir;
snprintf(cp, sizeof(cp),
"%s/.config/redshift.conf", home);
- filepath = cp;
+ if (!stat(cp, &attr))
+ filepath = cp;
#endif
}