diff options
author | David Zeuthen <zeuthen@gmail.com> | 2013-03-18 21:31:40 -0700 |
---|---|---|
committer | David Zeuthen <zeuthen@gmail.com> | 2013-03-18 21:31:40 -0700 |
commit | b841e30a98459816dfc49a735d3db4355a88edcd (patch) | |
tree | e464d8acfd697d446c55d3776552597c690d57dd | |
parent | 3345415bd69338d807627c7d60cb5367b5ec02ea (diff) |
Properly identify firewire devices as non-system devices
This was reported in bug 62077.
https://bugs.freedesktop.org/show_bug.cgi?id=62077
Signed-off-by: David Zeuthen <zeuthen@gmail.com>
-rw-r--r-- | src/udiskslinuxblock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/udiskslinuxblock.c b/src/udiskslinuxblock.c index a1781cf..d619850 100644 --- a/src/udiskslinuxblock.c +++ b/src/udiskslinuxblock.c @@ -354,7 +354,7 @@ update_hints (UDisksLinuxBlock *block, connection_bus = udisks_drive_get_connection_bus (drive); removable = udisks_drive_get_media_removable (drive); if (removable || - (g_strcmp0 (connection_bus, "usb") == 0 || g_strcmp0 (connection_bus, "firewire") == 0) || + (g_strcmp0 (connection_bus, "usb") == 0 || g_strcmp0 (connection_bus, "ieee1394") == 0) || (g_str_has_prefix (device_file, "/dev/mmcblk") || g_str_has_prefix (device_file, "/dev/mspblk"))) { hint_system = FALSE; |