glib r7120 - branches/glib-2-16/gio



Author: matthiasc
Date: Tue Jul  1 02:43:12 2008
New Revision: 7120
URL: http://svn.gnome.org/viewvc/glib?rev=7120&view=rev

Log:
        Bug 536641 â Filesystem querying in gio does not list AFS and autofs
        file systems

        * glocalfile.c (get_fs_type): Add afs and autofs.
        Patch by Danny Baumann.



Modified:
   branches/glib-2-16/gio/ChangeLog
   branches/glib-2-16/gio/glocalfile.c

Modified: branches/glib-2-16/gio/glocalfile.c
==============================================================================
--- branches/glib-2-16/gio/glocalfile.c	(original)
+++ branches/glib-2-16/gio/glocalfile.c	Tue Jul  1 02:43:12 2008
@@ -618,6 +618,10 @@
     {
     case 0xadf5:
       return "adfs";
+    case 0x5346414f:
+      return "afs";
+    case 0x0187:
+      return "autofs";
     case 0xADFF:
       return "affs";
     case 0x42465331:



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]