mirror of
https://github.com/smxi/inxi.git
synced 2024-11-17 00:31:19 +00:00
version update: IMPORTANT
several bug fixes, one quite serious (not caused by inxi, lsusb -v takes 1 minute to run in some releases). The lsusb bug is very bad, and hopefully someone will report that upstream, at Arch and Debian Sid it's seen. lsusb -v hangs very badly. Another bug fix with error output for some unknown reason on using cat on some /sys files for networking. Layout bug fixes as well. Package maintainers, this one is a real bug squasher release, thanks.
This commit is contained in:
parent
79b6b9d478
commit
1c38f454b2
6
inxi
6
inxi
|
@ -1,9 +1,9 @@
|
|||
#!/bin/bash
|
||||
########################################################################
|
||||
#### Script Name: inxi
|
||||
#### version: 1.7.8
|
||||
#### version: 1.7.9
|
||||
#### Date: June 22 2011
|
||||
#### Patch Number: 04
|
||||
#### Patch Number: 00
|
||||
########################################################################
|
||||
#### SPECIAL THANKS
|
||||
########################################################################
|
||||
|
@ -6772,7 +6772,7 @@ print_networking_data()
|
|||
fi
|
||||
card_string="${C1}Card$card_id${C2} ${a_network_working[0]} "
|
||||
card_data="$driver_data$port_data$pci_bus_id"
|
||||
if [[ $( calculate_line_length "$card_string$card_data" ) -lt $LINE_MAX ]];then
|
||||
if [[ $( calculate_line_length "$card_string$card_data" ) -gt $LINE_MAX ]];then
|
||||
network_data=$( create_print_line "$line_starter" "$card_string" )
|
||||
line_starter=' '
|
||||
card_string=''
|
||||
|
|
Loading…
Reference in a new issue