Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'winsup/utils/cygcheck.cc')
-rw-r--r--winsup/utils/cygcheck.cc9
1 files changed, 7 insertions, 2 deletions
diff --git a/winsup/utils/cygcheck.cc b/winsup/utils/cygcheck.cc
index da56e8cd7..57c27bf90 100644
--- a/winsup/utils/cygcheck.cc
+++ b/winsup/utils/cygcheck.cc
@@ -102,9 +102,14 @@ static char **paths = 0;
* keyeprint() is used to report failure modes
*/
static int
-keyeprint (const char *name)
+keyeprint (const char *name, bool show_error = true, bool print_failed = true)
{
- fprintf (stderr, "cygcheck: %s failed: %lu\n", name, GetLastError ());
+ if (show_error)
+ fprintf (stderr, "cygcheck: %s%s: %lu\n", name,
+ print_failed ? " failed" : "", GetLastError ());
+ else
+ fprintf (stderr, "cygcheck: %s%s\n", name,
+ print_failed ? " failed" : "");
return 1;
}