mirror of
https://github.com/smxi/inxi.git
synced 2025-01-31 18:12:21 +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 [[ $( calculate_line_length "$if_string_holding$if_string" ) -lt $COLS_INNER ]];then
|
||||||
if_string_holding="$if_string_holding$if_string"
|
if_string_holding="$if_string_holding$if_string"
|
||||||
else
|
else
|
||||||
full_string=$( create_print_line " " "$if_string_holding${CN}" )
|
if [[ -n $if_string_holding ]];then
|
||||||
print_screen_output "$full_string"
|
full_string=$( create_print_line " " "$if_string_holding${CN}" )
|
||||||
|
print_screen_output "$full_string"
|
||||||
|
fi
|
||||||
if_string_holding="$if_string"
|
if_string_holding="$if_string"
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue