summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/path.cc
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2003-09-30 21:03:57 +0000
committerCorinna Vinschen <corinna@vinschen.de>2003-09-30 21:03:57 +0000
commit7f7eda07801f6723d8b42202703ac0ca3e941458 (patch)
tree79f47f430ab89bce7dda900c52f9d14981724bc7 /winsup/cygwin/path.cc
parentf1aeb3c82ab5e041d31034146c5d070f98316c20 (diff)
downloadcygnal-7f7eda07801f6723d8b42202703ac0ca3e941458.tar.gz
cygnal-7f7eda07801f6723d8b42202703ac0ca3e941458.tar.bz2
cygnal-7f7eda07801f6723d8b42202703ac0ca3e941458.zip
* devices.h (enum fh_devices): Remove DEV_RAWDRIVE_MAJOR and
FH_RAWDRIVE. * devices.shilka (dev_rawdrive_storage): Remove. (unit_devices): Remove pointer to dev_rawdrive_storage. (uniq_devices): Remove rawdrive entry. * dtable.cc (build_fh_pc): Remove DEV_RAWDRIVE_MAJOR case. * path.cc (win32_device_name): ditto.
Diffstat (limited to 'winsup/cygwin/path.cc')
-rw-r--r--winsup/cygwin/path.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc
index 92fb00d9f..8850823db 100644
--- a/winsup/cygwin/path.cc
+++ b/winsup/cygwin/path.cc
@@ -908,9 +908,6 @@ win32_device_name (const char *src_path, char *win32_path, device& dev)
case DEV_TAPE_MAJOR:
__small_sprintf (win32_path, dev.fmt, dev.minor % 128);
break;
- case DEV_RAWDRIVE_MAJOR:
- __small_sprintf (win32_path, dev.fmt, dev.minor + 'A');
- break;
case DEV_SD_MAJOR:
__small_sprintf (win32_path, dev.fmt, dev.minor / 16, dev.minor % 16);
break;