From 488c08c3f3e7975b5fc1a81dc91c45e32dc50c64 Mon Sep 17 00:00:00 2001 From: mboelen Date: Wed, 16 Mar 2016 11:19:17 +0100 Subject: [PATCH] Add better description of hardening points assignment --- include/functions | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/functions b/include/functions index 56a8e2ce..82fa195f 100644 --- a/include/functions +++ b/include/functions @@ -77,9 +77,9 @@ HPPOINTS=`expr ${HPPOINTS} + ${HPADD}` HPTOTAL=`expr ${HPTOTAL} + ${HPADDMAX}` if [ ${HPADD} -eq ${HPADDMAX} ]; then - LogText "Hardening: assigned ${HPADD} hardening points (max for this item: ${HPADDMAX}), current: ${HPPOINTS}, total: ${HPTOTAL}" + LogText "Hardening: assigned maximum number of hardening points for this item (${HPADDMAX}). Current: ${HPPOINTS}, total: ${HPTOTAL}" else - LogText "Hardening: assigned ${HPADD} hardening points (max for this item: ${HPADDMAX}), current: ${HPPOINTS}, total: ${HPTOTAL} [*]" + LogText "Hardening: assigned partial number of hardening points (${HPADD}). Maximum for this item: ${HPADDMAX}. Current: ${HPPOINTS}, total: ${HPTOTAL}" fi }