44 lines
2.2 KiB
Diff
44 lines
2.2 KiB
Diff
|
452131: net-snmp-perl is broken for 5.10, cannot set oids
|
||
|
|
||
|
Source: jbjohnso@us.ibm.com, accepted upstream, SVN rev. 17097
|
||
|
|
||
|
diff -urN net-snmp-5.4.1/perl/SNMP/SNMP.xs net-snmp-5.4.1-f9fix/perl/SNMP/SNMP.xs
|
||
|
--- net-snmp-5.4.1/perl/SNMP/SNMP.xs 2008-06-13 15:48:46.000000000 -0500
|
||
|
+++ net-snmp-5.4.1-f9fix/perl/SNMP/SNMP.xs 2008-06-13 15:48:05.000000000 -0500
|
||
|
@@ -3072,7 +3072,7 @@
|
||
|
res = __add_var_val_str(pdu, oid_arr, oid_arr_len,
|
||
|
(varbind_val_f && SvOK(*varbind_val_f) ?
|
||
|
SvPV(*varbind_val_f,na):NULL),
|
||
|
- (varbind_val_f && SvOK(*varbind_val_f) ?
|
||
|
+ (varbind_val_f && SvPOK(*varbind_val_f) ?
|
||
|
SvCUR(*varbind_val_f):0), type);
|
||
|
|
||
|
if (verbose && res == FAILURE)
|
||
|
@@ -4266,7 +4266,7 @@
|
||
|
res = __add_var_val_str(pdu, oid_arr, oid_arr_len,
|
||
|
(varbind_val_f && SvOK(*varbind_val_f) ?
|
||
|
SvPV(*varbind_val_f,na):NULL),
|
||
|
- (varbind_val_f && SvOK(*varbind_val_f) ?
|
||
|
+ (varbind_val_f && SvPOK(*varbind_val_f) ?
|
||
|
SvCUR(*varbind_val_f):0),
|
||
|
type);
|
||
|
|
||
|
@@ -4424,7 +4424,7 @@
|
||
|
res = __add_var_val_str(pdu, oid_arr, oid_arr_len,
|
||
|
(varbind_val_f && SvOK(*varbind_val_f) ?
|
||
|
SvPV(*varbind_val_f,na):NULL),
|
||
|
- (varbind_val_f && SvOK(*varbind_val_f) ?
|
||
|
+ (varbind_val_f && SvPOK(*varbind_val_f) ?
|
||
|
SvCUR(*varbind_val_f):0),
|
||
|
type);
|
||
|
|
||
|
@@ -4563,7 +4563,7 @@
|
||
|
res = __add_var_val_str(pdu, oid_arr, oid_arr_len,
|
||
|
(varbind_val_f && SvOK(*varbind_val_f) ?
|
||
|
SvPV(*varbind_val_f,na):NULL),
|
||
|
- (varbind_val_f && SvOK(*varbind_val_f) ?
|
||
|
+ (varbind_val_f && SvPOK(*varbind_val_f) ?
|
||
|
SvCUR(*varbind_val_f):0),
|
||
|
type);
|
||
|
|