From d56778188a1988ef23afd785b405c3524a703c78 Mon Sep 17 00:00:00 2001 From: Ben Kibbey Date: Tue, 23 Dec 2008 21:36:17 -0500 Subject: [PATCH] Show the output filename and not stdout in the import notify string when using -I. --- src/pwmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pwmd.c b/src/pwmd.c index f8d3865b..248f401b 100644 --- a/src/pwmd.c +++ b/src/pwmd.c @@ -1177,8 +1177,8 @@ static gboolean xml_import(const gchar *filename, const gchar *outfile, return FALSE; } - log_write(N_("Importing '%s'. Output will be written to stdout ..."), - filename); + log_write(N_("Importing '%s'. Output will be written to '%s' ..."), + filename, outfile); if (iter && keyfile) { gchar *tmp = parse_rcfile_keyfile(keyfile, TRUE); -- 2.11.4.GIT