From d351c7a6b3f41184512c13fe130b8151bf19ec8e Mon Sep 17 00:00:00 2001 From: Jim Kingdon Date: Fri, 4 Feb 1994 02:22:53 +0000 Subject: [PATCH] * remote-udi.c (udi_attach): If no arguments, print error. --- gdb/ChangeLog | 7 +++++++ gdb/remote-udi.c | 3 +++ 2 files changed, 10 insertions(+) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index f26c551059..0fa4071937 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,10 @@ +Thu Feb 3 12:38:58 1994 Jim Kingdon (kingdon@lioth.cygnus.com) + + * m68k-stub.c: Treat mc68332 like mc68020 most places. Provide + a special exceptionSize for the 68332. + + * remote-udi.c (udi_attach): If no arguments, print error. + Thu Feb 3 17:34:05 1994 Fred Fish (fnf@cygnus.com) * Makefile.in (VERSION): Bump to 4.12.1 diff --git a/gdb/remote-udi.c b/gdb/remote-udi.c index d4c634e7cb..17c1016065 100644 --- a/gdb/remote-udi.c +++ b/gdb/remote-udi.c @@ -337,6 +337,9 @@ udi_attach (args, from_tty) UDIBool HostEndian = 0; UDIError err; + if (args == NULL) + error_no_arg ("program to attach"); + if (udi_session_id < 0) error ("UDI connection not opened yet, use the 'target udi' command.\n");