diff options
author | Christopher Faylor <me@cgf.cx> | 2005-05-06 21:09:58 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-05-06 21:09:58 +0000 |
commit | bcd1a9b6d139eab662dba234996d922ff07f281c (patch) | |
tree | 11dc06e7922cf531242aa082f9f7acf8f341990f | |
parent | e73f487b3c6ef525ef95478fab13cc3c2075c517 (diff) | |
download | cygnal-bcd1a9b6d139eab662dba234996d922ff07f281c.tar.gz cygnal-bcd1a9b6d139eab662dba234996d922ff07f281c.tar.bz2 cygnal-bcd1a9b6d139eab662dba234996d922ff07f281c.zip |
move comment
-rw-r--r-- | winsup/cygwin/path.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/winsup/cygwin/path.cc b/winsup/cygwin/path.cc index afcd9dd7e..2b64989ae 100644 --- a/winsup/cygwin/path.cc +++ b/winsup/cygwin/path.cc @@ -1516,8 +1516,6 @@ mount_info::conv_to_win32_path (const char *src_path, char *dst, device& dev, goto out_no_chroot_check; } - /* Check if the cygdrive prefix was specified. If so, just strip - off the prefix and transform it into an MS-DOS path. */ MALLOC_CHECK; if (isproc (src_path)) { @@ -1529,6 +1527,8 @@ mount_info::conv_to_win32_path (const char *src_path, char *dst, device& dev, strcpy (dst, src_path); goto out; } + /* Check if the cygdrive prefix was specified. If so, just strip + off the prefix and transform it into an MS-DOS path. */ else if (iscygdrive (src_path)) { int n = mount_table->cygdrive_len - 1; |