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:
authorBas van Gompel <cygwin-patch.buzz@bavag.tmfweb.nl>2004-11-16 08:16:59 +0300
committerBas van Gompel <cygwin-patch.buzz@bavag.tmfweb.nl>2004-11-16 08:16:59 +0300
commitcd1ab47e384368a0ec5904601cb552ab85689ab6 (patch)
treee7559281815fef700a73f122df0c9c4932cb6f34 /winsup/utils
parentf247ebc36e8b4e46c0a5908f62b424991c0a40ea (diff)
* cygcheck.cc (find_on_path): Clear show_error and/or print_failed
parameters to display_error. (rva_to_offset): Ditto. (dll_info): Ditto. (track_down): Ditto.
Diffstat (limited to 'winsup/utils')
-rw-r--r--winsup/utils/ChangeLog8
-rw-r--r--winsup/utils/cygcheck.cc12
2 files changed, 14 insertions, 6 deletions
diff --git a/winsup/utils/ChangeLog b/winsup/utils/ChangeLog
index f1edc31bd..c5e2157da 100644
--- a/winsup/utils/ChangeLog
+++ b/winsup/utils/ChangeLog
@@ -1,3 +1,11 @@
+2004-11-16 Bas van Gompel <cygwin-patch.buzz@bavag.tmfweb.nl>
+
+ * cygcheck.cc (find_on_path): Clear show_error and/or print_failed
+ parameters to display_error.
+ (rva_to_offset): Ditto.
+ (dll_info): Ditto.
+ (track_down): Ditto.
+
2004-11-13 Pierre Humblet <pierre.humblet@ieee.org>
* kill.cc (forcekill): Do not pass negative pids to
diff --git a/winsup/utils/cygcheck.cc b/winsup/utils/cygcheck.cc
index 07d3b7c77..35ac4330c 100644
--- a/winsup/utils/cygcheck.cc
+++ b/winsup/utils/cygcheck.cc
@@ -190,13 +190,13 @@ find_on_path (char *file, char *default_extension,
if (!file)
{
- display_error ("find_on_path: NULL pointer for file");
+ display_error ("find_on_path: NULL pointer for file", false, false);
return 0;
}
if (default_extension == NULL)
{
- display_error ("find_on_path: NULL pointer for default_extension");
+ display_error ("find_on_path: NULL pointer for default_extension", false, false);
return 0;
}
@@ -305,7 +305,7 @@ rva_to_offset (int rva, char *sections, int nsections, int *sz)
if (sections == NULL)
{
- display_error ("rva_to_offset: NULL passed for sections");
+ display_error ("rva_to_offset: NULL passed for sections", true, false);
return 0;
}
@@ -437,7 +437,7 @@ dll_info (const char *path, HANDLE fh, int lvl, int recurse)
if (path == NULL)
{
- display_error ("dll_info: NULL passed for path");
+ display_error ("dll_info: NULL passed for path", true, false);
return;
}
@@ -542,13 +542,13 @@ track_down (char *file, char *suffix, int lvl)
{
if (file == NULL)
{
- display_error ("track_down: NULL passed for file");
+ display_error ("track_down: NULL passed for file", true, false);
return;
}
if (suffix == NULL)
{
- display_error ("track_down: NULL passed for suffix");
+ display_error ("track_down: NULL passed for suffix", false, false);
return;
}