diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-05-08 01:29:42 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2015-05-05 20:56:32 +0200 |
commit | 356be0d5e19760ef384b890a0128afe1e8dc10fd (patch) | |
tree | 66b38eaa1c9746e535d8d95b0908bf75ad833083 | |
parent | Support (but warn) that the user does not have an passwd entry or a home set in the passwd entry. Also, getpwent can fail: handle that. (diff) | |
download | redshift-ng-356be0d5e19760ef384b890a0128afe1e8dc10fd.tar.gz redshift-ng-356be0d5e19760ef384b890a0128afe1e8dc10fd.tar.bz2 redshift-ng-356be0d5e19760ef384b890a0128afe1e8dc10fd.tar.xz |
Improve error messages that are printed when the user's home directory cannot be determine
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-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. */ } |