aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2025-03-05 12:09:03 +0100
committerMattias Andrée <m@maandree.se>2025-03-05 12:09:03 +0100
commit77c600c7edf65cc0853476cd3cdf0a2d67675906 (patch)
treee26bb6da089d60d64298c6372cff3d4002d6bbe1
parentUnlist redshift/pull/611 and redshift/pull/612: rejected (diff)
parentImprove error messages that are printed when the user's home directory cannot be determine (diff)
downloadredshift-ng-77c600c7edf65cc0853476cd3cdf0a2d67675906.tar.gz
redshift-ng-77c600c7edf65cc0853476cd3cdf0a2d67675906.tar.bz2
redshift-ng-77c600c7edf65cc0853476cd3cdf0a2d67675906.tar.xz
Merge branch 'homeless-users-and-nonusers' of https://github.com/maandree/redshift
-rw-r--r--src/config-ini.c32
1 files changed, 23 insertions, 9 deletions
diff --git a/src/config-ini.c b/src/config-ini.c
index 63c1f5e..4f12610 100644
--- a/src/config-ini.c
+++ b/src/config-ini.c
@@ -101,15 +101,29 @@ 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/redshift.conf", home);
- f = fopen(cp, "r");
- if (f == NULL) {
- /* Fall back to formerly used path. */
- 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/redshift.conf", home);
+ f = fopen(cp, "r");
+ if (f == NULL) {
+ /* Fall back to formerly used path. */
+ snprintf(cp, sizeof(cp),
+ "%s/.config/redshift.conf", home);
+ f = fopen(cp, "r");
+ }
+ } else {
+ fprintf(stderr, _("Cannot determine your home directory, "
+ "it is from the system's user table.\n"));
+ }
+ } else if (errno) {
+ perror("getpwuid");
+ } else {
+ fprintf(stderr, _("Cannot determine your home directory, "
+ "your user ID is missing from the system's user table.\n"));
+ /* errno can either be set to any number of error codes,
+ or be zero if the user does not have a passwd entry. */
}
}