From 0ab93b142c29848e747f8a2fbfc9009ad6b871e1 Mon Sep 17 00:00:00 2001 From: "Eric A. Miller" Date: Sun, 15 Dec 2013 10:15:55 -0500 Subject: [PATCH] Correctly unpack bits in munge_bits() --- Info.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Info.pm b/Info.pm index 899e0e18..563a53cb 100644 --- a/Info.pm +++ b/Info.pm @@ -3280,7 +3280,7 @@ sub munge_bits { my $bits = shift; return unless defined $bits; - return unpack( "b*", $bits ); + return unpack( "B*", $bits ); } =item munge_caps