forked from Imagelibrary/binutils-gdb
gdb/
2008-03-28 Carlos O'Donell <carlos@codesourcery.com> * ser-mingw.c (ser_windows_open): Open requested name.
This commit is contained in:
@@ -51,13 +51,6 @@ ser_windows_open (struct serial *scb, const char *name)
|
||||
struct ser_windows_state *state;
|
||||
COMMTIMEOUTS timeouts;
|
||||
|
||||
/* Only allow COM ports. */
|
||||
if (strncmp (name, "COM", 3) != 0)
|
||||
{
|
||||
errno = ENOENT;
|
||||
return -1;
|
||||
}
|
||||
|
||||
h = CreateFile (name, GENERIC_READ | GENERIC_WRITE, 0, NULL,
|
||||
OPEN_EXISTING, FILE_FLAG_OVERLAPPED, NULL);
|
||||
if (h == INVALID_HANDLE_VALUE)
|
||||
|
||||
Reference in New Issue
Block a user