diff options
-rw-r--r-- | src/config-ini.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/config-ini.c b/src/config-ini.c index 51eeeca..334a541 100644 --- a/src/config-ini.c +++ b/src/config-ini.c @@ -92,12 +92,14 @@ open_config_file(const char *filepath) "%s/.config/redshift.conf", home); f = fopen(cp, "r"); } else { - fprintf(stderr, _("It appear as if you are homeless.")); + fprintf(stderr, _("Cannot determine your home directory, " + "it is from the system's user table.\n")); } } else if (errno) { perror("getpwuid"); } else { - fprintf(stderr, _("It appear as if you do not exist.")); + 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. */ } |