From 15d082a3f5e39f363829d39c053c3115144e2b43 Mon Sep 17 00:00:00 2001 From: Mikko Rasa Date: Sat, 19 Apr 2014 20:30:40 +0300 Subject: [PATCH 1/1] More efficient way to recognize removable buses --- main.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/main.c b/main.c index 2609341..d1a2853 100644 --- a/main.c +++ b/main.c @@ -313,7 +313,7 @@ int can_mount(Property *props, char **allowed) static char *removable_buses[] = { "usb", "firewire", 0 }; char *devname; char *devpath; - int i; + char *bus; devname = get_property_value(props, "DEVNAME"); if(is_in_array(allowed, devname)) @@ -326,9 +326,9 @@ int can_mount(Property *props, char **allowed) if(is_removable(devpath)) return 1; - for(i=0; removable_buses[i]; ++i) - if(match_property_value(props, "ID_BUS", removable_buses[i])) - return 1; + bus = get_property_value(props, "ID_BUS"); + if(is_in_array(removable_buses, bus)) + return 1; return check_buses(devpath, removable_buses); } -- 2.43.0