diff options
-rw-r--r-- | src/config-ini.c | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/src/config-ini.c b/src/config-ini.c index 65751dd..51eeeca 100644 --- a/src/config-ini.c +++ b/src/config-ini.c @@ -85,10 +85,22 @@ open_config_file(const char *filepath) if (f == NULL) { struct passwd *pwd = getpwuid(getuid()); - char *home = pwd->pw_dir; - snprintf(cp, sizeof(cp), - "%s/.config/redshift.conf", home); - f = fopen(cp, "r"); + if (pwd != NULL) { + char *home = pwd->pw_dir; + if ((home != NULL) && (*home != '\0')) { + snprintf(cp, sizeof(cp), + "%s/.config/redshift.conf", home); + f = fopen(cp, "r"); + } else { + fprintf(stderr, _("It appear as if you are homeless.")); + } + } else if (errno) { + perror("getpwuid"); + } else { + fprintf(stderr, _("It appear as if you do not exist.")); + /* errno can either be set to any number of error codes, + or be zero if the user does not have a passwd entry. */ + } } if (f == NULL && (env = getenv("XDG_CONFIG_DIRS")) != NULL && |