typo fix to errind.EngineIdMismatch class and its instance

pull/45/head
elie 2012-06-26 06:54:59 +00:00
parent 92841c8dff
commit 005e78d623
2 changed files with 3 additions and 2 deletions

View File

@ -26,6 +26,7 @@ Revision 4.2.3
- Fix to GenericTrap type processing at rfc2576:v1Tov2c() which used to
crash the whole SNMP engine.
- Typo fix to snmpInASNParseErrs MIB instance object.
- Typo fix to errind.EngineIdMismatch class and its instance.
Revision 4.2.2
--------------

View File

@ -42,8 +42,8 @@ nonReportable = NonReportable('Report PDU generation not attempted')
class DataMismatch(ErrorIndication): pass
dataMismatch = DataMismatch('SNMP request/response parameters mismatched')
class EngineIDMispatch(ErrorIndication): pass
engineIDMispatch = EngineIDMispatch('SNMP engine ID mismatch encountered')
class EngineIDMismatch(ErrorIndication): pass
engineIDMismatch = EngineIDMismatch('SNMP engine ID mismatch encountered')
class UnknownEngineID(ErrorIndication): pass
unknownEngineID = UnknownEngineID('Unknown SNMP engine ID encountered')