From 981cf0744e11c5825f907ba5a5003f423a03d01c Mon Sep 17 00:00:00 2001 From: Steven Noonan Date: Sun, 1 Jan 2017 13:38:38 -0800 Subject: [PATCH] cipherscan: fix benchmark mode output The microsecond measurement column wasn't being rendered. Signed-off-by: Steven Noonan --- cipherscan | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cipherscan b/cipherscan index 853db26..64cc018 100755 --- a/cipherscan +++ b/cipherscan @@ -837,8 +837,8 @@ display_results_in_terminal() { if [[ $different == "True" ]]; then echo "$result"|grep -v '(NONE)' else - # prints priority, ciphersuite, protocols and pfs - awk '!/(NONE)/{print $1 " " $2 " " $3 " " $10 " " $11}' <<<"$result" + # prints priority, ciphersuite, protocols, pfs and benchmark time (if any) + awk '!/(NONE)/{print $1 " " $2 " " $3 " " $10 " " $11 " " $13 }' <<<"$result" fi done|column -t echo