diff options
author | Marc Espie <espie@cvs.openbsd.org> | 1999-08-23 20:32:32 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 1999-08-23 20:32:32 +0000 |
commit | ef233545e6c3dcf885a8b3178a859a23604b359c (patch) | |
tree | 8f4f503c82a377012f9429ed7e24abfbd6aabb98 /gnu/egcs/gcc/fix-header.c | |
parent | 20915043a05410a0247b150f77f71c94c43ce2ae (diff) |
Update to gcc 2.95.1, official release.
Diffstat (limited to 'gnu/egcs/gcc/fix-header.c')
-rw-r--r-- | gnu/egcs/gcc/fix-header.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gnu/egcs/gcc/fix-header.c b/gnu/egcs/gcc/fix-header.c index dfde8e5c560..af0577e43c4 100644 --- a/gnu/egcs/gcc/fix-header.c +++ b/gnu/egcs/gcc/fix-header.c @@ -1127,7 +1127,7 @@ main (argc, argv) special_file_handling = stdio_h; include_entry = std_include_table; while (include_entry->name != NULL - && (include_entry->name == CONTINUED + && ((strcmp (include_entry->name, CONTINUED) == 0) || strcmp (inc_filename, include_entry->name) != 0)) include_entry++; @@ -1140,7 +1140,7 @@ main (argc, argv) if (entry->flags) add_symbols (entry->flags, entry->names); entry++; - if (entry->name != CONTINUED) + if (strcmp (entry->name, CONTINUED) != 0) break; } } |