Remove support for old Cygwin 1.5 versions.
authorPierre Muller <muller@sourceware.org>
Thu, 7 Apr 2011 23:59:59 +0000 (23:59 +0000)
committerPierre Muller <muller@sourceware.org>
Thu, 7 Apr 2011 23:59:59 +0000 (23:59 +0000)
* win32-low.c (win32_create_inferior): Use new cygwin_path_list
function to avoid warning.
(win32_add_one_solib): Use cygwin_conv_path function to avoid
warning.

gdb/gdbserver/ChangeLog
gdb/gdbserver/win32-low.c

index 33d080f..a633155 100644 (file)
@@ -1,3 +1,11 @@
+2011-04-07  Pierre Muller  <muller@ics.u-strasbg.fr>
+
+       Remove support for old Cygwin 1.5 versions.
+       * win32-low.c (win32_create_inferior): Use new cygwin_path_list
+       function to avoid warning.
+       (win32_add_one_solib): Use cygwin_conv_path function to avoid
+       warning.
+
 2011-03-18  Pierre Muller  <muller@ics.u-strasbg.fr>
 
        * gdbserver/server.h (Macro _): Define it if not available.
index b47081b..51bc1d6 100644 (file)
@@ -536,13 +536,15 @@ win32_create_inferior (char *program, char **program_args)
   path_ptr = getenv ("PATH");
   if (path_ptr)
     {
+      int size = cygwin_conv_path_list (CCP_POSIX_TO_WIN_A, path_ptr, NULL, 0);
       orig_path = alloca (strlen (path_ptr) + 1);
-      new_path = alloca (cygwin_posix_to_win32_path_list_buf_size (path_ptr));
+      new_path = alloca (size);
       strcpy (orig_path, path_ptr);
-      cygwin_posix_to_win32_path_list (path_ptr, new_path);
+      cygwin_conv_path_list (CCP_POSIX_TO_WIN_A, path_ptr, new_path, size);
       setenv ("PATH", new_path, 1);
-    }
-  cygwin_conv_to_win32_path (program, real_path);
+     }
+  cygwin_conv_path (CCP_POSIX_TO_WIN_A, program, real_path,
+                   MAXPATHLEN);
   program = real_path;
 #endif
 
@@ -925,7 +927,7 @@ win32_add_one_solib (const char *name, CORE_ADDR load_addr)
 #endif
 
 #ifdef __CYGWIN__
-  cygwin_conv_to_posix_path (buf, buf2);
+  cygwin_conv_path (CCP_WIN_A_TO_POSIX, buf, buf2, sizeof (buf2));
 #else
   strcpy (buf2, buf);
 #endif