patches/gnome-vfs-07-audio-cd-show-icon.diff
author rohinis
Tue, 29 Nov 2011 17:32:55 +0000
branchs11express-2010-11
changeset 22234 c23e64da3e06
parent 8809 a1af69090bc2
permissions -rw-r--r--
2011-11-29 Rohini S <[email protected]> * patches/Python26-22-audio.diff: Fixes CVE-2010-1634 * specs/SUNWPython26.spec: Fixes CR 7085446

diff -ur gnome-vfs-2.16.1/libgnomevfs/gnome-vfs-volume-monitor-daemon.c ../SUNWgnome-vfs-2.16.1.hacked/gnome-vfs-2.16.1/libgnomevfs/gnome-vfs-volume-monitor-daemon.c
--- gnome-vfs-2.16.1/libgnomevfs/gnome-vfs-volume-monitor-daemon.c	2006-10-20 15:36:40.235990000 +0000
+++ ../SUNWgnome-vfs-2.16.1.hacked/gnome-vfs-2.16.1/libgnomevfs/gnome-vfs-volume-monitor-daemon.c	2006-10-20 15:38:58.945481000 +0000
@@ -934,6 +934,11 @@
 		vol->priv->device_type = GNOME_VFS_DEVICE_TYPE_HARDDRIVE;
 	}
 
+	/* Nautilus is not refreshing the desktop because floppy and cd devices are mounted as subfs
+	 * So we dont want to show different label for different media devices.
+	 * Let icon represent drive and not the media. For more info, please see #6228176
+	 */
+#if 0
 	if (vol->priv->device_type == GNOME_VFS_DEVICE_TYPE_CDROM) {
 		fd = 0;
 		disctype = _gnome_vfs_get_cdrom_type (mount->device_path, &fd);
@@ -965,6 +970,7 @@
 			close (fd);
 		}
 	}
+#endif
 
 	if (display_name == NULL) {
 		display_name = make_volume_name_from_path_and_fs (mount->mount_path, mount->filesystem_type);
@@ -990,6 +996,7 @@
 	vol->priv->is_user_visible = 0;
 	switch (vol->priv->device_type) {
 	case GNOME_VFS_DEVICE_TYPE_CDROM:
+	case GNOME_VFS_DEVICE_TYPE_AUDIO_CD:
 	case GNOME_VFS_DEVICE_TYPE_FLOPPY:
 	case GNOME_VFS_DEVICE_TYPE_ZIP:
 	case GNOME_VFS_DEVICE_TYPE_JAZ: