aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/mount.cc
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2016-06-23 16:56:41 +0200
committerCorinna Vinschen <corinna@vinschen.de>2016-06-23 16:56:41 +0200
commitb2867a68b9f94402e2afba49de978d9e8f9abaeb (patch)
tree484960735e607552fbb5704f9e8f83eedab77f4a /winsup/cygwin/mount.cc
parentbceb8ebebb78612cd1da16790ce30d37eddbe244 (diff)
downloadnewlib-b2867a68b9f94402e2afba49de978d9e8f9abaeb.zip
newlib-b2867a68b9f94402e2afba49de978d9e8f9abaeb.tar.gz
newlib-b2867a68b9f94402e2afba49de978d9e8f9abaeb.tar.bz2
Handle up to 63 partitions per drive
Revamp device parsing code. Introducing support for more partitions into the shilka-generated parser has the unfortunate side-effect of raising the size of the DLL by almost 2 Megs. Therefore we split out the handling for /dev/sdXY devices into a tiny bit of hand-written code. While at it, remove some unused cruft from devices.* and generally clean up the device class to provide access methods instead of direct access to members. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
Diffstat (limited to 'winsup/cygwin/mount.cc')
-rw-r--r--winsup/cygwin/mount.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/mount.cc b/winsup/cygwin/mount.cc
index 2621680..acde67e 100644
--- a/winsup/cygwin/mount.cc
+++ b/winsup/cygwin/mount.cc
@@ -78,7 +78,7 @@ win32_device_name (const char *src_path, char *win32_path, device& dev)
dev.parse (src_path);
if (dev == FH_FS || dev == FH_DEV)
return false;
- strcpy (win32_path, dev.native);
+ strcpy (win32_path, dev.native ());
return true;
}