* NEWS: Mention native Windows support.
[deliverable/binutils-gdb.git] / gdb / kod-cisco.c
index 0dffdb67fcd68e6f73e10f4ea540abd20fc788c6..2ed67f6b05ccbcd63629fe82f3e6c44f7005af03 100644 (file)
@@ -1,5 +1,5 @@
 /* Kernel Object Display facility for Cisco
-   Copyright 1999 Free Software Foundation, Inc.
+   Copyright (C) 1999, 2000 Free Software Foundation, Inc.
    
    Written by Tom Tromey <tromey@cygnus.com>.
    
@@ -17,7 +17,8 @@ GNU General Public License for more details.
 
 You should have received a copy of the GNU General Public License
 along with this program; if not, write to the Free Software
-Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
+Foundation, Inc., 51 Franklin Street, Fifth Floor,
+Boston, MA 02110-1301, USA.  */
 
 #include "defs.h"
 #include "gdb_string.h"
@@ -79,9 +80,9 @@ cisco_kod_open (kod_display_callback_ftype *display_func,
     }
 
   if (buffer[i] == '\0')
-    error ("Remote returned malformed packet\n");
+    error (_("Remote returned malformed packet."));
   if (strcmp (&buffer[i], "0.0.0"))
-    error ("Remote returned unknown stub version: %s\n", &buffer[i]);
+    error (_("Remote returned unknown stub version: %s."), &buffer[i]);
 
   /* Return name, version, and description.  I hope we have enough
      space.  */
@@ -312,6 +313,6 @@ cisco_kod_request (char *arg, int from_tty)
 
   /* Free memory.  */
   for (i = 0; i < sync_next; ++i)
-    free (sync_ids[i]);
-  free (sync_ids);
+    xfree (sync_ids[i]);
+  xfree (sync_ids);
 }
This page took 0.023427 seconds and 4 git commands to generate.