File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1
1
2
- Revision 4.4.6, released 2018-08-XX
2
+ Revision 4.4.6, released 2018-09-13
3
3
-----------------------------------
4
4
5
5
- Improved package build and dependency tracking
@@ -9,6 +9,10 @@ Revision 4.4.6, released 2018-08-XX
9
9
would fail.
10
10
- Fix to tolerate possible duplicate enumerations in `Bits` and `Integer`
11
11
SMI types.
12
+ - Fix to tolerate non-initialised entries in SNMP community table. Once a
13
+ bad entry sneaked into the SNMP community table, all the subsequent
14
+ SNMP v1/v2c operations failed. The fix ignores incomplete SNMP community
15
+ table entries in the course of building indices.
12
16
13
17
Revision 4.4.5, released 2018-08-05
14
18
-----------------------------------
Original file line number Diff line number Diff line change @@ -605,7 +605,7 @@ class Bits(OctetString):
605
605
606
606
def __new__ (cls , * args , ** kwargs ):
607
607
if 'namedValues' in kwargs :
608
- Bits = cls .withNamedBits (** kwargs .pop ('namedValues' ))
608
+ Bits = cls .withNamedBits (** dict ( kwargs .pop ('namedValues' ) ))
609
609
return Bits (* args , ** kwargs )
610
610
611
611
return OctetString .__new__ (cls )
You can’t perform that action at this time.
0 commit comments