mirror of
https://github.com/smxi/inxi.git
synced 2025-01-31 10:02:18 +00:00
small bug fix, forgot to check for null value in i printout
This commit is contained in:
parent
befef56f93
commit
a1d4e0be88
6
inxi
6
inxi
|
@ -10529,8 +10529,10 @@ print_networking_ip_data()
|
|||
if [[ $( calculate_line_length "$if_string_holding$if_string" ) -lt $COLS_INNER ]];then
|
||||
if_string_holding="$if_string_holding$if_string"
|
||||
else
|
||||
full_string=$( create_print_line " " "$if_string_holding${CN}" )
|
||||
print_screen_output "$full_string"
|
||||
if [[ -n $if_string_holding ]];then
|
||||
full_string=$( create_print_line " " "$if_string_holding${CN}" )
|
||||
print_screen_output "$full_string"
|
||||
fi
|
||||
if_string_holding="$if_string"
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue