From c7e27fc0a6fc4201b52be033083446813dfc2ec7 Mon Sep 17 00:00:00 2001 From: Christian Hesse Date: Tue, 11 Oct 2016 10:00:09 +0200 Subject: print message to stdout, not stderr --- pacredir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pacredir.c b/pacredir.c index b17510c..2dabcb7 100644 --- a/pacredir.c +++ b/pacredir.c @@ -360,7 +360,7 @@ static int ahc_echo(void * cls, if (stat(filename, &fst) != 0) { if (verbose > 0) - write_log(stderr, "stat() failed, you do not have a local copy of %s\n", basename); + write_log(stdout, "You do not have a local copy of %s\n", basename); } else last_modified = fst.st_mtime; -- cgit v1.2.3-54-g00ecf