Commit 0bc0f41d by Eric Christopher

fix-header.c (read_scan_file): Update for add_path change.

2004-05-22  Eric Christopher  <echristo@redhat.com>

	* fix-header.c (read_scan_file): Update for add_path change.

From-SVN: r82127
parent 2461ecbe
2004-05-22 Eric Christopher <echristo@redhat.com>
* fix-header.c (read_scan_file): Update for add_path change.
2004-05-22 Ben Elliston <bje@au.ibm.com> 2004-05-22 Ben Elliston <bje@au.ibm.com>
* c.opt (Wmissing-include-dirs): New. * c.opt (Wmissing-include-dirs): New.
......
...@@ -634,12 +634,12 @@ read_scan_file (char *in_fname, int argc, char **argv) ...@@ -634,12 +634,12 @@ read_scan_file (char *in_fname, int argc, char **argv)
if (argv[i][2] != '\0') if (argv[i][2] != '\0')
{ {
strings_processed = 1; strings_processed = 1;
add_path (xstrdup (argv[i] + 2), BRACKET, false); add_path (xstrdup (argv[i] + 2), BRACKET, false, false);
} }
else if (i + 1 != argc) else if (i + 1 != argc)
{ {
strings_processed = 2; strings_processed = 2;
add_path (xstrdup (argv[i + 1]), BRACKET, false); add_path (xstrdup (argv[i + 1]), BRACKET, false, false);
} }
} }
else if (argv[i][1] == 'D') else if (argv[i][1] == 'D')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment