aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2016-10-11 10:00:09 +0200
committerGravatar Christian Hesse <mail@eworm.de>2016-10-11 10:00:09 +0200
commitc7e27fc0a6fc4201b52be033083446813dfc2ec7 (patch)
tree09990bcd57a0297524c3d84cb6efce92050f5e6c
parent2a3198a9c9e4613fac20557458c7b0a99d88b786 (diff)
downloadpaccache-c7e27fc0a6fc4201b52be033083446813dfc2ec7.tar.gz
paccache-c7e27fc0a6fc4201b52be033083446813dfc2ec7.tar.zst
print message to stdout, not stderr
-rw-r--r--pacredir.c2
1 files changed, 1 insertions, 1 deletions
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;