Convert the 'skin_errors' need to 'tool_errors'.



git-svn-id: svn://svn.valgrind.org/valgrind/trunk@3053 a5019735-40e9-0310-863c-91ae7b9d1cf9
diff --git a/coregrind/vg_main.c b/coregrind/vg_main.c
index bbe0b6a..70752d8 100644
--- a/coregrind/vg_main.c
+++ b/coregrind/vg_main.c
@@ -2020,7 +2020,7 @@
    }
 
    if (VG_(clo_n_suppressions) < VG_CLO_MAX_SFILES-1 &&
-       (VG_(needs).core_errors || VG_(needs).skin_errors)) {
+       (VG_(needs).core_errors || VG_(needs).tool_errors)) {
       /* If there are no suppression files specified and the tool
 	 needs one, load the default */
       static const Char default_supp[] = "default.supp";
@@ -2032,7 +2032,7 @@
    }
 
    if (VG_(clo_gen_suppressions) && 
-       !VG_(needs).core_errors && !VG_(needs).skin_errors) {
+       !VG_(needs).core_errors && !VG_(needs).tool_errors) {
       VG_(message)(Vg_UserMsg, 
                    "Can't use --gen-suppressions=yes with this tool,");
       VG_(message)(Vg_UserMsg, 
@@ -2817,7 +2817,7 @@
    // Read suppression file
    //   p: process_cmd_line_options()  [for VG_(clo_suppressions)]
    //--------------------------------------------------------------
-   if (VG_(needs).core_errors || VG_(needs).skin_errors)
+   if (VG_(needs).core_errors || VG_(needs).tool_errors)
       VG_(load_suppressions)();
 
    //--------------------------------------------------------------
@@ -2878,7 +2878,7 @@
    if (VG_(clo_track_fds))
       VG_(show_open_fds)();
 
-   if (VG_(needs).core_errors || VG_(needs).skin_errors)
+   if (VG_(needs).core_errors || VG_(needs).tool_errors)
       VG_(show_all_errors)();
 
    SK_(fini)( exitcode );