Use printf to print browser names

This commit is contained in:
David Cooper 2017-03-23 14:13:47 -04:00 committed by GitHub
parent d5bb4edd80
commit 13f42774ae

View File

@ -3590,7 +3590,7 @@ run_client_simulation() {
debugme tmln_out
for name in "${short[@]}"; do
#FIXME: printf formatting would look better, especially if we want a wide option here
out " ${names[i]} "
out " $(printf -- "%-33s" "${names[i]}")"
if "$using_sockets" && [[ -n "${handshakebytes[i]}" ]]; then
client_simulation_sockets "${handshakebytes[i]}"
sclient_success=$?