mirror of
https://github.com/smxi/inxi.git
synced 2024-11-17 00:31:19 +00:00
final bug fix, whew!!
This commit is contained in:
parent
767dc1f320
commit
11a97ad73b
8
inxi
8
inxi
|
@ -1,8 +1,8 @@
|
|||
#!/bin/bash
|
||||
########################################################################
|
||||
#### Script Name: inxi
|
||||
#### version: 1.4.88
|
||||
#### Date: April 29 2011
|
||||
#### version: 1.4.89
|
||||
#### Date: April 30 2011
|
||||
########################################################################
|
||||
#### SPECIAL THANKS
|
||||
########################################################################
|
||||
|
@ -462,7 +462,7 @@ BAN_LIST_CPU=''
|
|||
|
||||
### USB networking search string data, because some brands can have other products than
|
||||
### wifi/nic cards, they need further identifiers, with wildcards.
|
||||
USB_NETWORK_SEARCH="Atmel CanoScan Davicom Linksys Netgear Realtek.*Network Realtek.*Wireless Realtek.*WLAN"
|
||||
USB_NETWORK_SEARCH="Atmel Davicom Linksys Netgear Realtek.*Network Realtek.*Wireless Realtek.*WLAN"
|
||||
|
||||
# WARNING: In the main part below (search for 'KONVI')
|
||||
# there's a check for Konversation-specific config files.
|
||||
|
@ -3329,7 +3329,7 @@ get_networking_data()
|
|||
}' <<< "$card_data" )
|
||||
|
||||
if [[ -n $array_string ]];then
|
||||
array_count=${#A_AUDIO_DATA[@]}
|
||||
array_count=${#A_NETWORK_DATA[@]}
|
||||
IFS=","
|
||||
A_NETWORK_DATA[$array_count]="$array_string"
|
||||
IFS="$ORIGINAL_IFS"
|
||||
|
|
Loading…
Reference in a new issue