From 356be0d5e19760ef384b890a0128afe1e8dc10fd Mon Sep 17 00:00:00 2001 From: Mattias Andrée Date: Thu, 8 May 2014 01:29:42 +0200 Subject: Improve error messages that are printed when the user's home directory cannot be determine 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 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src') 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. */ } -- cgit v1.2.3-70-g09d2