diff options
author | Raimo Niskanen <[email protected]> | 2014-04-17 16:29:51 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2014-07-25 12:14:44 +0200 |
commit | 373d9fa059875a2d68251c485968d3aa78e830b4 (patch) | |
tree | befc6315db5b1da0790120cb12eb03f7bfb9dc16 /lib/snmp/test/snmp_agent_test_lib.erl | |
parent | 7bc7e5821ea0614ca82467bf0349f82b61d89971 (diff) | |
download | otp-373d9fa059875a2d68251c485968d3aa78e830b4.tar.gz otp-373d9fa059875a2d68251c485968d3aa78e830b4.tar.bz2 otp-373d9fa059875a2d68251c485968d3aa78e830b4.zip |
wip-all-regression-tests-but-one-manager
Diffstat (limited to 'lib/snmp/test/snmp_agent_test_lib.erl')
-rw-r--r-- | lib/snmp/test/snmp_agent_test_lib.erl | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/snmp/test/snmp_agent_test_lib.erl b/lib/snmp/test/snmp_agent_test_lib.erl index bfedd7558c..050ae0126d 100644 --- a/lib/snmp/test/snmp_agent_test_lib.erl +++ b/lib/snmp/test/snmp_agent_test_lib.erl @@ -1536,8 +1536,11 @@ rewrite_target_addr_conf(Dir, NewPort) -> end, ?line [TrapAddr|Addrs] = - snmp_conf:read(TAFile, - fun(R) -> rewrite_target_addr_conf_check(R) end), + snmp_conf:read( + TAFile, + fun(R, S) -> + {rewrite_target_addr_conf_check(R),S} + end), ?DBG("rewrite_target_addr_conf -> TrapAddr: ~p",[TrapAddr]), |