]> sourceware.org Git - newlib-cygwin.git/commitdiff
* mount.cc (fs_names): Add missing ReFS entry. Change comment.
authorCorinna Vinschen <corinna@vinschen.de>
Tue, 14 Aug 2012 09:49:25 +0000 (09:49 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Tue, 14 Aug 2012 09:49:25 +0000 (09:49 +0000)
* mount.h (enum fs_info_type): Add comment.

winsup/cygwin/ChangeLog
winsup/cygwin/mount.cc
winsup/cygwin/mount.h

index 43d87317b67a486535fb033bd4340e5923eb1cd1..f3b9819c3274cac119bfedcb6fe5a9fa6869f595 100644 (file)
@@ -1,3 +1,8 @@
+2012-08-14  Corinna Vinschen  <corinna@vinschen.de>
+
+       * mount.cc (fs_names): Add missing ReFS entry.  Change comment.
+       * mount.h (enum fs_info_type): Add comment.
+
 2012-08-13  Christopher Faylor  <me.cygwin2012@cgf.cx>
 
        * errno.cc (errmap): Map ERROR_SXS_CANT_GEN_ACTCTX to ELIBBAD.
index 125f248e401207e5a46560bf1156df7b50d1d35d..cbd2f3fc1cf6802251192b02558b23fef91d0177 100644 (file)
@@ -1572,11 +1572,13 @@ mount_info::del_item (const char *path, unsigned flags)
 
 /************************* mount_item class ****************************/
 
-/* Order must be identical to mount.h, enum fs_info_type. */
+/* Don't add new fs types without adding them to fs_info_type in mount.h!
+   Don't reorder without reordering fs_info_type in mount.h!*/
 fs_names_t fs_names[] = {
     { "none", false },
     { "vfat", true },
     { "ntfs", true },
+    { "refs", true },
     { "smbfs", false },
     { "nfs", false },
     { "netapp", false },
index 1d3b7451bb2987c6ea76a5cd8d11a70aed20a364..e010c72c86f461a098b0ddec01f259f8b7f6cdac 100644 (file)
@@ -24,6 +24,8 @@ enum disk_type
 
 disk_type get_disk_type (LPCWSTR);
 
+/* Don't add new fs types without adding them to fs_names in mount.cc!
+   Don't reorder without reordering fs_names in mount.cc! */
 enum fs_info_type
 {
   none = 0,
This page took 0.032719 seconds and 5 git commands to generate.