Comment 8 for bug 224760

Revision history for this message
Christian Neumair (chris-gnome-de) wrote :

According to the gio sources [g_local_file_query_filesystem_info()], we attempt to deal with this situation:

#if defined(__linux__)
  /* ncpfs does not know the amount of available and free space *
   * assuming ncpfs is linux specific, if you are on a non-linux platform
   * where ncpfs is available, please file a bug about it on bugzilla.gnome.org
   */
  if (statfs_buffer.f_bavail == 0 && statfs_buffer.f_bfree == 0 &&
      /* linux/ncp_fs.h: NCP_SUPER_MAGIC == 0x564c */
      statfs_buffer.f_type == 0x564c)
    no_size = TRUE;
#endif

This means that no size check should be made for ncpfs.

Maybe anybody could try to run

gvfs-info -f <some-file-on-ncpfs>

in a terminal?