commit 3a2899981056f1d349730464b7f7172ffcc9671f
parent 3b557f3a7fb492e1d5818d51f3befbaec22faf6f
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Wed, 26 Oct 2022 12:34:48 +0200
fix
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/http-status-codes/extend.sh b/http-status-codes/extend.sh
@@ -18,7 +18,7 @@ do
VAL=`recsel -e "Value = $n" -P Description iana.tmp || true`
CAPS=`echo ${VAL} | tr [a-z] [A-Z] | tr " -" "__"`
recset -f Identifier -a "${CAPS}" -e "Value = $n" ${TARGET}
- let "n+=1"
+ n=`expr $n + 1`
done