chiark / gitweb /
cryptop.genkey: Look up the recovery keys in the correct place.
[distorted-keys] / cryptop.list
index 538b623cfc889a45c846c11fd519f2b51d537b51..d5f448f6fb1123595ab80b44760badbd276371c5 100755 (executable)
@@ -137,8 +137,7 @@ cd $KEYS
 ## names into explicit `NAME+0' forms.  Decide whether we need a width-
 ## measuring pass.
 calcwd=nil
-cc=$cols
-wdcols=""
+cc=$cols cols=""
 while :; do
 
   ## Pick off the next column name.  If none are left, leave the loop.
@@ -159,11 +158,11 @@ while :; do
   case "$col" in
     *[:=+]*)
       wd=${col#*[:=+]}
-      wdcols=${wdcols:+$wdcols,}$col
+      cols=${cols:+$cols,}$col
       checknumber "column width" "$wd"
       ;;
     *)
-      wdcols=${wdcols:+$wdcols,}$col+0
+      cols=${cols:+$cols,}$col+0
       ;;
   esac
 
@@ -209,8 +208,8 @@ while :; do
     ## Now iterate over the columns.  If we're calculating widths, use the
     ## ones we worked out last time, and clear the list so we can build a new
     ## one as we go.
-    case $calcwd in t) cols=$wdcols ;; esac
-    cc=$cols wdcols="" sep=""
+    cc=$cols sep=""
+    case $calcwd in t) cols="" ;; esac
     while :; do
 
       ## Pick off the next column spec.
@@ -234,12 +233,12 @@ while :; do
       ## idea of the column width.  If we're printing, work out a format.
       case $calcwd,$col in
        t,*[:=]*)
-         wdcols=${wdcols:+$wdcols,}$col
+         cols=${cols:+$cols,}$col
          ;;
        t,*+*)
          colwd=$(( $(echo "$value" | wc -c) - 1 ))
          if [ $colwd -gt $wd ]; then wd=$colwd; fi
-         wdcols=${wdcols:+$wdcols,}$name+$wd
+         cols=${cols:+$cols,}$name+$wd
          ;;
        nil,*[=+]*)
          fmt="%-${wd}.${wd}s"