Correcting spelling of s/lenght/length/ in warning messages.

This commit is contained in:
Chris Lamb 2009-02-21 23:14:24 +00:00 committed by Daniel Baumann
parent 0e2d53d5d9
commit c081caf4d7
1 changed files with 4 additions and 4 deletions

View File

@ -852,21 +852,21 @@ Check_defaults ()
if [ "$(echo ${LH_ISO_APPLICATION} | wc -c)" -ge 129 ]
then
Echo_warning "You have specified a too long string for iso application, the maximum lenght is 128 characters."
Echo_warning "You have specified a too long string for iso application, the maximum length is 128 characters."
fi
if [ "$(echo ${LH_ISO_PREPARER} | wc -c)" -ge 129 ]
then
Echo_warning "You have specified a too long string for iso preparer, the maximum lenght is 128 characters."
Echo_warning "You have specified a too long string for iso preparer, the maximum length is 128 characters."
fi
if [ "$(echo ${LH_ISO_PUBLISHER} | wc -c)" -ge 129 ]
then
Echo_warning "You have specified a too long string for iso publisher, the maximum lenght is 128 characters."
Echo_warning "You have specified a too long string for iso publisher, the maximum length is 128 characters."
fi
if [ "$(eval "echo ${LH_ISO_VOLUME}" | wc -c)" -ge 33 ]
then
Echo_warning "You have specified a too long string for iso volume, the maximum lenght is 32 characters."
Echo_warning "You have specified a too long string for iso volume, the maximum length is 32 characters."
fi
}