* cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
authorCorinna Vinschen <corinna@vinschen.de>
Wed, 7 Aug 2002 08:52:24 +0000 (08:52 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Wed, 7 Aug 2002 08:52:24 +0000 (08:52 +0000)
write dump file binary.

gdb/ChangeLog
gdb/cli/cli-dump.c

index 63873a0..dd9dbcc 100644 (file)
@@ -1,3 +1,8 @@
+2002-08-06  Corinna Vinschen  <vinschen@redhat.com>
+
+       * cli/cli-dump.c (add_dump_command): Explicitely use "b" flag to
+       write dump file binary.
+
 2002-08-05  Michael Snyder  <msnyder@redhat.com>
 
        *  mips-tdep.c (mips_find_saved_regs): Adjust stack according
index 36c1d2d..7aa6092 100644 (file)
@@ -442,7 +442,7 @@ add_dump_command (char *name, void (*func) (char *args, char *mode),
   c->completer =  filename_completer;
   d = XMALLOC (struct dump_context);
   d->func = func;
-  d->mode = "w";
+  d->mode = "wb";
   set_cmd_context (c, d);
   c->func = call_dump_func;
 
@@ -450,7 +450,7 @@ add_dump_command (char *name, void (*func) (char *args, char *mode),
   c->completer =  filename_completer;
   d = XMALLOC (struct dump_context);
   d->func = func;
-  d->mode = "a";
+  d->mode = "ab";
   set_cmd_context (c, d);
   c->func = call_dump_func;