From 6d6bb5ef72cbd34286080df980e8e32f8bf6a856 Mon Sep 17 00:00:00 2001 From: Stefan Ritt Date: Fri, 13 Oct 2006 19:25:46 +0000 Subject: [PATCH] Improved error output if password file cannot be opened SVN revision: 1730 --- src/elogd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/elogd.c b/src/elogd.c index 0898c066..b6ffcc8c 100755 --- a/src/elogd.c +++ b/src/elogd.c @@ -21223,6 +21223,7 @@ PMXML_NODE load_password_file(LOGBOOK * lbs, char *error, int error_size) strcat(str, ": "); strlcat(str, strerror(errno), sizeof(str)); show_error(str); + eprintf(str); strlcpy(error, str, error_size); return NULL; }