diff options
author | Christian Hesse <mail@eworm.de> | 2016-10-11 10:00:09 +0200 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2016-10-11 10:00:09 +0200 |
commit | c7e27fc0a6fc4201b52be033083446813dfc2ec7 (patch) | |
tree | 09990bcd57a0297524c3d84cb6efce92050f5e6c | |
parent | 2a3198a9c9e4613fac20557458c7b0a99d88b786 (diff) | |
download | pacredir-c7e27fc0a6fc4201b52be033083446813dfc2ec7.tar.gz pacredir-c7e27fc0a6fc4201b52be033083446813dfc2ec7.tar.zst |
print message to stdout, not stderr
-rw-r--r-- | pacredir.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |