diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2003-09-28 09:44:13 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2003-09-28 09:44:13 +0000 |
commit | 5c770c843135040655925283c55c9163cd2c1052 (patch) | |
tree | 580bf69fcaf673236ac6863bbe4fd2607da99a2b /winsup/cygwin/dtable.cc | |
parent | 83abcab4c07167f3fd4350bc4d443d67fb307493 (diff) | |
download | cygnal-5c770c843135040655925283c55c9163cd2c1052.tar.gz cygnal-5c770c843135040655925283c55c9163cd2c1052.tar.bz2 cygnal-5c770c843135040655925283c55c9163cd2c1052.zip |
* devices.h: Move a few device major numbers. Fix typo of FH_UDP.
* device.shilka: Remove /dev/hd device entries, rename all device_hd*
to device_sd*.
(device::parse): Disallow units outside lower and upper bounds.
* dtable.cc (build_fh_pc): Fix typo of FH_UDP.
* path.cc (win32_device_name): Fix win32 name creation to match new
device handling.
Diffstat (limited to 'winsup/cygwin/dtable.cc')
-rw-r--r-- | winsup/cygwin/dtable.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/dtable.cc b/winsup/cygwin/dtable.cc index e7b185104..48b3d3001 100644 --- a/winsup/cygwin/dtable.cc +++ b/winsup/cygwin/dtable.cc @@ -382,7 +382,7 @@ build_fh_pc (path_conv& pc) fh = cnew (fhandler_pipe) (); break; case FH_TCP: - case FH_UCP: + case FH_UDP: case FH_ICMP: case FH_UNIX: case FH_STREAM: |