]> git.ipfire.org Git - thirdparty/binutils-gdb.git/commitdiff
* configure.in: removed target_dependent line.
authorJohn Gilmore <gnu@cygnus>
Sat, 19 Sep 1992 11:55:20 +0000 (11:55 +0000)
committerJohn Gilmore <gnu@cygnus>
Sat, 19 Sep 1992 11:55:20 +0000 (11:55 +0000)
* remote-mm.c (mm_attach): change printf to error to prevent
fallthrough bug.
* remote-udi.c (udi_attach): change printf to error to prevent
fallthrough bug.

gdb/ChangeLog
gdb/configure.in
gdb/remote-mm.c
gdb/remote-udi.c

index ec21ee9d86b724e5daffa16001dc2ae4c0dd7ad8..55924502968a614d390252ece423242e7407f4d6 100644 (file)
@@ -1,6 +1,12 @@
 Wed Sep 16 22:31:55 1992  K. Richard Pixley  (rich@sendai.cygnus.com)
 
        * breakpoint.c, sparc-tdep.c: comment changes.
+       * configure.in: removed target_dependent line.
+
+       * remote-mm.c (mm_attach): change printf to error to prevent
+       fallthrough bug.
+       * remote-udi.c (udi_attach): change printf to error to prevent
+       fallthrough bug.
 
 Sat Sep 19 04:23:54 1992  John Gilmore  (gnu@cygnus.com)
 
index 44312eb47d98b0b847a91dd483089878e5e496b0..71008c750876240f7a731630c18359e016e2df76 100644 (file)
@@ -1,7 +1,6 @@
 configdirs="doc"
 srcname="GDB"
 srctrigger=main.c
-target_dependent=true
 
 # per-host:
 
index b98026c1be96253663202f8653bc9cac656ea04f..d824d2584ff858066bfdd4732cc4eb1b819bc4fa 100644 (file)
@@ -488,7 +488,7 @@ mm_attach (args, from_tty)
   DENTER("mm_attach()");
 
   if (!mm_stream)
-      printf ("MiniMon not opened yet, use the 'target minimon' command.\n");
+      error ("MiniMon not opened yet, use the 'target minimon' command.\n");
        
   dont_repeat();
 
index 4309774a5a44f076bf0a1e76bda2e5aec8f098bf..bac27aa68e07d24edfcaa2408dde09ff4c841b39 100644 (file)
@@ -424,7 +424,7 @@ udi_attach (args, from_tty)
   DENTER("udi_attach()");
 
   if (udi_session_id < 0)
-      printf ("UDI connection not opened yet, use the 'target udi' command.\n");
+      error ("UDI connection not opened yet, use the 'target udi' command.\n");
        
   if (from_tty)
       printf ("Attaching to remote program %s...\n", prog_name);