* symfile.c (symbol_file_command): strcmp => !strcmp.
authorJohn Gilmore <gnu@cygnus>
Sat, 22 Feb 1992 10:04:50 +0000 (10:04 +0000)
committerJohn Gilmore <gnu@cygnus>
Sat, 22 Feb 1992 10:04:50 +0000 (10:04 +0000)
* breakpoint.h:  Move prototypes to follow enum definition they need.
* breakpoint.c, infrun.c:  Lint.
* printcmd.c:  Use `enum enable' rather than `enum
display_status'.
* mipsread.c:  First pass at making it compile with the new
objfile changes.  Probably seriously broken still, but it
compiles.  FIXME.

gdb/ChangeLog
gdb/symfile.c

index 16ab8ded14ebca32c66b0df80bc9ea6873b54f77..8613868df48ced4c7a0dadf8c465b793944ad378 100644 (file)
@@ -1,3 +1,14 @@
+Sat Feb 22 02:00:32 1992  John Gilmore  (gnu at cygnus.com)
+
+       * symfile.c (symbol_file_command):  strcmp => !strcmp.
+       * breakpoint.h:  Move prototypes to follow enum definition they need.
+       * breakpoint.c, infrun.c:  Lint.
+       * printcmd.c:  Use `enum enable' rather than `enum
+       display_status'.
+       * mipsread.c:  First pass at making it compile with the new
+       objfile changes.  Probably seriously broken still, but it
+       compiles.  FIXME.
+
 Sat Feb 22 00:56:39 1992  Stu Grossman  (grossman at cygnus.com)
 
        * infrun.c, infcmd.c, breakpoint.c, main.c, symfile.c,
index 03f40cec4ea62ce22740ba2df7a395c80bcbb703..450856aaefee147faf26cb22f0f269504412609a 100644 (file)
@@ -585,11 +585,11 @@ symbol_file_command (args, from_tty)
       name = *argv;
       while (*++argv != NULL)
        {
-         if (strcmp (*argv, "dumpable"))
+         if (!strcmp (*argv, "dumpable"))
            {
              dumpable = 1;
            }
-         else if (strcmp (*argv, "readnow"))
+         else if (!strcmp (*argv, "readnow"))
            {
              readnow = 1;
            }
This page took 0.027474 seconds and 4 git commands to generate.