diff --git a/inxi b/inxi index 87ed589..f5c817c 100755 --- a/inxi +++ b/inxi @@ -5202,7 +5202,7 @@ get_machine_data() if [[ -n $DMIDECODE_DATA ]];then if [[ $B_ROOT == 'true' ]];then # this handles very old systems, like Lenny 2.6.26, with dmidecode, but no data - if [[ -n $( grep -i 'no smbios or dmi' <<< "$DMIDECODE_DATA" ) ]];then + if [[ -n $( grep -i 'no smbios ' <<< "$DMIDECODE_DATA" ) ]];then array_string='dmidecode-no-smbios-dmi-data' # please note: only dmidecode version 2.11 or newer supports consistently the -s flag else diff --git a/inxi.changelog b/inxi.changelog index b807753..81cacdc 100755 --- a/inxi.changelog +++ b/inxi.changelog @@ -1,3 +1,19 @@ +===================================================================================== +Version: 1.8.37 +Patch Version: 00 +Script Date: February 11 2013 +----------------------------------- +Changes: +----------------------------------- +New tarball. Tiny fix for an obscure fringe case, leaving numbering as is. + +In some cases, dmidecode returns the grammatically wrong message: +'No smbios nor dmi data' instead of 'No smbios or dmi data', corrected the search +to look for simpler: 'no smbios ' to avoid that random error. + +----------------------------------- +-- Harald Hope - Tue, 12 Feb 2013 09:54:51 -0800 + ===================================================================================== Version: 1.8.37 Patch Version: 00