munge_caps() is no longer in use, so remove

This commit is contained in:
Eric A. Miller
2013-12-15 10:24:45 -05:00
parent 5445a496db
commit 37aca89af7

14
Info.pm
View File

@@ -3283,20 +3283,6 @@ sub munge_bits {
return unpack( "B*", $bits );
}
=item munge_caps
Takes an octet string and returns an ascii binary string, 7 digits long, MSB.
=cut
sub munge_caps {
my $caps = shift;
return unless defined $caps;
my $bits = substr( unpack( "B*", $caps ), -7 );
return $bits;
}
=item munge_counter64
If $BIGINT is set to true, then a Math::BigInt object is returned.