aboutsummaryrefslogtreecommitdiff
path: root/bpkg/archive.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/archive.cxx
parentfa9017f87197565b970d22d2d51241fdfa55c916 (diff)
Move STDIN, STDOUT, and STDERR to lower case
Diffstat (limited to 'bpkg/archive.cxx')
-rw-r--r--bpkg/archive.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bpkg/archive.cxx b/bpkg/archive.cxx
index ba03d70..f61e7f3 100644
--- a/bpkg/archive.cxx
+++ b/bpkg/archive.cxx
@@ -64,7 +64,7 @@ namespace bpkg
for (const string& o: co.tar_option ())
args.push_back (o.c_str ());
- // -O/--to-stdout -- extract to STDOUT.
+ // -O/--to-stdout -- extract to stdout.
//
args.push_back ("-O");
@@ -106,7 +106,7 @@ namespace bpkg
if (verb >= 2)
print_process (args);
- // If err is false, then redirect STDERR to STDOUT.
+ // If err is false, then redirect stderr to stdout.
//
auto_fd nfd (err ? nullfd : fdnull ());