aboutsummaryrefslogtreecommitdiff
path: root/bpkg/pkg-verify.cxx
diff options
context:
space:
mode:
authorKaren Arutyunov <karen@codesynthesis.com>2018-07-12 19:54:23 +0300
committerKaren Arutyunov <karen@codesynthesis.com>2018-07-12 19:55:09 +0300
commit5b2b72ed08f514444f05e7b42556ae096879f2e8 (patch)
tree61d90245d1ffd1784773f69631ed61d763a4e47c /bpkg/pkg-verify.cxx
parentfa9017f87197565b970d22d2d51241fdfa55c916 (diff)
Move STDIN, STDOUT, and STDERR to lower case
Diffstat (limited to 'bpkg/pkg-verify.cxx')
-rw-r--r--bpkg/pkg-verify.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/bpkg/pkg-verify.cxx b/bpkg/pkg-verify.cxx
index 69014ac..a372efa 100644
--- a/bpkg/pkg-verify.cxx
+++ b/bpkg/pkg-verify.cxx
@@ -28,7 +28,7 @@ namespace bpkg
// If diag is false, we need to make tar not print any diagnostics. There
// doesn't seem to be an option to suppress this and the only way is to
- // redirect STDERR to something like /dev/null.
+ // redirect stderr to something like /dev/null.
//
// If things go badly for tar and it starts spitting errors instead of the
// manifest, the manifest parser will fail. But that's ok since we assume
@@ -196,7 +196,7 @@ namespace bpkg
{
try
{
- manifest_serializer s (cout, "STDOUT");
+ manifest_serializer s (cout, "stdout");
m.serialize (s);
}
catch (const manifest_serialization& e)
@@ -205,7 +205,7 @@ namespace bpkg
}
catch (const io_error&)
{
- fail << "unable to write to STDOUT";
+ fail << "unable to write to stdout";
}
}
else if (verb && !o.silent () && !o.no_result ())