OSDN Git Service

* mount.cc (fs_info::update): Set has_buggy_reopen for Netapps as well.
authorcorinna <corinna>
Mon, 12 Dec 2011 11:02:59 +0000 (11:02 +0000)
committercorinna <corinna>
Mon, 12 Dec 2011 11:02:59 +0000 (11:02 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/mount.cc

index ef7fa4d..f517537 100644 (file)
@@ -1,4 +1,8 @@
 2011-12-12  Corinna Vinschen  <vinschen@redhat.com>
+
+       * mount.cc (fs_info::update): Set has_buggy_reopen for Netapps as well.
+
+2011-12-12  Corinna Vinschen  <vinschen@redhat.com>
            Christopher Faylor  <me.cygwin2011@cgf.cx>
 
        * dcrt0.cc (wow64_respawn): New static variable.
index 8955925..bfb63f8 100644 (file)
@@ -393,10 +393,10 @@ fs_info::update (PUNICODE_STRING upath, HANDLE in_vol)
             away since at least some of them are not capable either. */
          has_dos_filenames_only (is_netapp () || is_nwfs ()
                                  || is_ncfsd () || is_cifs ());
-         /* NWFS does not grok re-opening a file by handle.  It only
-            supports this if the filename is non-null and the handle is
+         /* Netapp and NWFS don't grok re-opening a file by handle.  They
+            only support this if the filename is non-null and the handle is
             the handle to a directory. NcFsd IR10 is supposed to be ok. */
-         has_buggy_reopen (is_nwfs ());
+         has_buggy_reopen (is_netapp () || is_nwfs ());
        }
     }
   if (!got_fs ()