diff --git a/inxi b/inxi index 8cc3749..3eaab19 100755 --- a/inxi +++ b/inxi @@ -3368,7 +3368,8 @@ get_network_advanced_data() working_path=$( grep -s "$usb_vendor" /sys/devices/pci*/*/usb*/*/*/idVendor | sed -e "s/idVendor:$usb_vendor//" -e '/driver/d' ) product_path=$( grep -s "$usb_product" /sys/devices/pci*/*/usb*/*/*/idProduct | sed -e "s/idProduct:$usb_product//" -e '/driver/d' ) # make sure it's the right product/vendor match here, it will almost always be but let's be sure - if [[ -n $working_path && -n $product_path ]] && [[ $working_path == $product_path ]];then + # if [[ -n $working_path && -n $product_path ]] && [[ $working_path == $product_path ]];then + if [[ -n $working_path ]];then # now ls that directory and get the numeric starting sub directory and that should be the full path # to the /net directory part dir_path=$( ls ${working_path} 2>/dev/null | grep -sE '^[0-9]' )