aboutsummaryrefslogtreecommitdiff
path: root/bpkg/fetch.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/fetch.cxx
parentfa9017f87197565b970d22d2d51241fdfa55c916 (diff)
Move STDIN, STDOUT, and STDERR to lower case
Diffstat (limited to 'bpkg/fetch.cxx')
-rw-r--r--bpkg/fetch.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/bpkg/fetch.cxx b/bpkg/fetch.cxx
index ad903cc..f764cce 100644
--- a/bpkg/fetch.cxx
+++ b/bpkg/fetch.cxx
@@ -23,7 +23,7 @@ namespace bpkg
{
tracer trace ("check_wget");
- // wget --version prints the version to STDOUT and exits with 0
+ // wget --version prints the version to stdout and exits with 0
// status. The first line starts with "GNU Wget X.Y[.Z].
//
const char* args[] = {prog.string ().c_str (), "--version", nullptr};
@@ -35,7 +35,7 @@ namespace bpkg
if (verb >= 3)
print_process (args);
- process pr (pp, args, 0, -1); // Redirect STDOUT to a pipe.
+ process pr (pp, args, 0, -1); // Redirect stdout to a pipe.
string l;
@@ -105,7 +105,7 @@ namespace bpkg
};
// Map verbosity level. If we are running quiet or at level 1
- // and the output is STDOUT, then run wget quiet. If at level
+ // and the output is stdout, then run wget quiet. If at level
// 1 and the output is a file, then show the progress bar. At
// level 2 and 3 run it at the default level (so we will print
// the command line and it will display the progress, error
@@ -181,7 +181,7 @@ namespace bpkg
static bool
check_curl (const path& prog)
{
- // curl --version prints the version to STDOUT and exits with 0
+ // curl --version prints the version to stdout and exits with 0
// status. The first line starts with "curl X.Y.Z"
//
const char* args[] = {prog.string ().c_str (), "--version", nullptr};
@@ -193,7 +193,7 @@ namespace bpkg
if (verb >= 3)
print_process (args);
- process pr (pp, args, 0, -1); // Redirect STDOUT to a pipe.
+ process pr (pp, args, 0, -1); // Redirect stdout to a pipe.
try
{
@@ -238,7 +238,7 @@ namespace bpkg
};
// Map verbosity level. If we are running quiet or at level 1
- // and the output is STDOUT, then run curl quiet. If at level
+ // and the output is stdout, then run curl quiet. If at level
// 1 and the output is a file, then show the progress bar. At
// level 2 and 3 run it at the default level (so we will print
// the command line and it will display its elaborate progress).
@@ -270,7 +270,7 @@ namespace bpkg
for (const string& o: ops)
args.push_back (o.c_str ());
- // Output. By default curl writes to STDOUT.
+ // Output. By default curl writes to stdout.
//
if (fo)
{
@@ -319,7 +319,7 @@ namespace bpkg
if (verb >= 3)
print_process (args);
- process pr (pp, args, 0, -1, 1); // Redirect STDOUT and STDERR to a pipe.
+ process pr (pp, args, 0, -1, 1); // Redirect stdout and stderr to a pipe.
try
{