From f5a7d6e3931aa248de271e481b21b1275ec3084c Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Tue, 11 Mar 2014 17:57:30 +0100 Subject: If even HOME is missing look up the user's home directory from passwd MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Mattias Andrée --- src/config-ini.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'src/config-ini.c') diff --git a/src/config-ini.c b/src/config-ini.c index 4541a0f..3183ba1 100644 --- a/src/config-ini.c +++ b/src/config-ini.c @@ -22,6 +22,10 @@ #include #include #include +#ifndef _WIN32 +# include +# include +#endif #include "config-ini.h" @@ -59,6 +63,14 @@ open_config_file(const char *filepath) snprintf(cp, sizeof(cp), "%s/.config/redshift.conf", env); filepath = cp; +#ifndef _WIN32 + } else { + struct passwd *pwd = getpwuid(getuid()); + char *home = pwd->pw_dir; + snprintf(cp, sizeof(cp), + "%s/.config/redshift.conf", home); + filepath = cp; +#endif } if (filepath != NULL) { -- cgit v1.2.3-70-g09d2