Replacing all -ge with -gt checks for string max lenghts of iso meta information.

This commit is contained in:
Karl Goetz 2009-11-01 11:42:25 +01:00 committed by Daniel Baumann
parent 23fc01e1b8
commit 0e1256d02c
1 changed files with 4 additions and 4 deletions

View File

@ -1099,22 +1099,22 @@ Check_defaults ()
esac
fi
if [ "$(echo ${LH_ISO_APPLICATION} | wc -c)" -ge 129 ]
if [ "$(echo ${LH_ISO_APPLICATION} | wc -c)" -gt 128 ]
then
Echo_warning "You have specified a value of LH_ISO_APPLICATION that is too long; the maximum length is 128 characters."
fi
if [ "$(echo ${LH_ISO_PREPARER} | wc -c)" -ge 129 ]
if [ "$(echo ${LH_ISO_PREPARER} | wc -c)" -gt 128 ]
then
Echo_warning "You have specified a value of LH_ISO_PREPARER that is too long; the maximum length is 128 characters."
fi
if [ "$(echo ${LH_ISO_PUBLISHER} | wc -c)" -ge 129 ]
if [ "$(echo ${LH_ISO_PUBLISHER} | wc -c)" -gt 128 ]
then
Echo_warning "You have specified a value of LH_ISO_PUBLISHER that is too long; the maximum length is 128 characters."
fi
if [ "$(eval "echo ${LH_ISO_VOLUME}" | wc -c)" -ge 33 ]
if [ "$(eval "echo ${LH_ISO_VOLUME}" | wc -c)" -gt 32 ]
then
Echo_warning "You have specified a value of LH_ISO_VOLUME that is too long; the maximum length is 32 characters."
fi