]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Disable --skin=, so you have to use --tool= now. No great loss.
authorNicholas Nethercote <n.nethercote@gmail.com>
Tue, 9 Nov 2004 14:35:43 +0000 (14:35 +0000)
committerNicholas Nethercote <n.nethercote@gmail.com>
Tue, 9 Nov 2004 14:35:43 +0000 (14:35 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@2951

coregrind/vg_main.c

index 0f2e414cc7428277032522cb3fe17d84eff0b509..bbe0b6a9250194633171718f753d4b9ccc1ce7e3 100644 (file)
@@ -1645,8 +1645,7 @@ static void pre_process_cmd_line_options
       } else if (VG_CLO_STREQ(vg_argv[i], "--help-debug")) {
          *need_help = 2;
 
-      } else if (VG_CLO_STREQN(7, vg_argv[i], "--tool=") ||
-                VG_CLO_STREQN(7, vg_argv[i], "--skin=")) {
+      } else if (VG_CLO_STREQN(7, vg_argv[i], "--tool=")) {
         *tool = &vg_argv[i][7];
         
       } else if (VG_CLO_STREQN(7, vg_argv[i], "--exec=")) {
@@ -1717,8 +1716,7 @@ static void process_cmd_line_options( UInt* client_auxv, const char* toolname )
       }
       
       /* Ignore these options - they've already been handled */
-      if (VG_CLO_STREQN(7, arg, "--tool=") ||
-         VG_CLO_STREQN(7, arg, "--skin="))
+      if (VG_CLO_STREQN(7, arg, "--tool="))
         continue;
       if (VG_CLO_STREQN(7, arg, "--exec="))
         continue;