[gvfs] Fix return value of gdu_drive_can_poll_for_media()



commit 1f58b7f56d8136b8ab0fe3d85c6315244d83fe0d
Author: David Zeuthen <davidz redhat com>
Date:   Thu Oct 8 20:26:11 2009 -0400

    Fix return value of gdu_drive_can_poll_for_media()
    
    If a drive doesn't use removable media, we shouldn't advertise that it
    can be polled.

 monitor/gdu/ggdudrive.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/monitor/gdu/ggdudrive.c b/monitor/gdu/ggdudrive.c
index 9920829..20f8940 100644
--- a/monitor/gdu/ggdudrive.c
+++ b/monitor/gdu/ggdudrive.c
@@ -190,7 +190,7 @@ update_drive (GGduDrive *drive)
        */
       drive->can_eject = gdu_device_drive_get_is_media_ejectable (device) || gdu_device_drive_get_requires_eject (device) || gdu_device_is_removable (device);
       drive->is_media_check_automatic = gdu_device_is_media_change_detected (device);
-      drive->can_poll_for_media = TRUE;
+      drive->can_poll_for_media = gdu_device_is_removable (device);
     }
 
   /* determine start/stop type */



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