diff options
author | Christopher Faylor <me@cgf.cx> | 2004-01-21 19:14:19 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2004-01-21 19:14:19 +0000 |
commit | a1dcf5d848c38877dad8c76bc295811d25dbf1d8 (patch) | |
tree | 73da788085b5194dbac835af99c4155ab6f4fc7a /winsup/cygwin/devices.in | |
parent | 918f634fed57f28899ec9d2ed1d9922a57ee8cb4 (diff) | |
download | cygnal-a1dcf5d848c38877dad8c76bc295811d25dbf1d8.tar.gz cygnal-a1dcf5d848c38877dad8c76bc295811d25dbf1d8.tar.bz2 cygnal-a1dcf5d848c38877dad8c76bc295811d25dbf1d8.zip |
* devices.in: Change raw com device to more correct form.
Diffstat (limited to 'winsup/cygwin/devices.in')
-rw-r--r-- | winsup/cygwin/devices.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/devices.in b/winsup/cygwin/devices.in index b55418f97..1bcb73bc7 100644 --- a/winsup/cygwin/devices.in +++ b/winsup/cygwin/devices.in @@ -65,8 +65,8 @@ const device dev_bad_storage = "/dev/kmem", FH_KMEM, "\\dev\\mem" "/dev/clipboard", FH_CLIPBOARD, "\\dev\\clipboard" "/dev/port", FH_PORT, "\\dev\\port" -"/dev/com%(0-16)d", FHDEV(DEV_SERIAL_MAJOR, {$1}), "\\.\\com{$1}" -"/dev/ttyS%(0-15)d", FHDEV(DEV_SERIAL_MAJOR, {$1 + 1}), "\\.\\com{$1 + 1}" +"/dev/com%(0-16)d", FHDEV(DEV_SERIAL_MAJOR, {$1}), "\\\\.\\com{$1}" +"/dev/ttyS%(0-15)d", FHDEV(DEV_SERIAL_MAJOR, {$1 + 1}), "\\\\.\\com{$1 + 1}" "/dev/pipe", FH_PIPE, "\\dev\\pipe" "/dev/fifo", FH_FIFO, "\\dev\\fifo" "/dev/st%(0-127)d", FHDEV(DEV_TAPE_MAJOR, {$1}), "\\Device\\Tape{$1}" |