change inheritance order in @ISA, add POD, and remove tabs

This commit is contained in:
Max Baker
2009-06-12 18:11:52 +00:00
parent 2a7d5b51d9
commit e738d502ef

View File

@@ -27,7 +27,7 @@
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
package SNMP::Info::CiscoStpExtensions;
$VERSION = '2.00';
$VERSION = '2.01';
use strict;
@@ -36,7 +36,7 @@ use SNMP::Info;
use SNMP::Info::Bridge;
use vars qw/$VERSION $DEBUG %MIBS %FUNCS %GLOBALS %MUNGE %PORTSTAT $INIT/;
@SNMP::Info::CiscoStpExtensions::ISA = qw/SNMP::Info SNMP::Info::Bridge Exporter/;
@SNMP::Info::CiscoStpExtensions::ISA = qw/SNMP::Info::Bridge SNMP::Info Exporter/;
@SNMP::Info::CiscoStpExtensions::EXPORT_OK = qw//;
%MIBS = (
@@ -340,4 +340,14 @@ Format is a hash reference with key = ifIndex, value = [1|0]
=back
=head1 MUNGES
=over
=item oct2str()
Unpacks H* into a string
=back
=cut