From f1af5002f6710b37cf3d2b3903ef3103a34424a6 Mon Sep 17 00:00:00 2001 From: joey <> Date: Mon, 13 Nov 2006 16:23:31 +0000 Subject: [PATCH] The divisor is 4, not 2 --- Util.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Util.pm b/Util.pm index 98668c3..9acd5d1 100644 --- a/Util.pm +++ b/Util.pm @@ -171,7 +171,7 @@ sub FormatFingerPrint { $out .= " " if ($_ == 7); } } else { - foreach (0..int(length($in)/2)) { + foreach (0..int(length($in)/4)) { $out .= substr($in, $_*4, 4)." "; } } -- 2.20.1