diff options
author | Micael Karlberg <[email protected]> | 2012-03-20 10:56:10 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2012-03-20 10:56:10 +0100 |
commit | 805e559417c2364ec27c212a49a23a48e2a97da4 (patch) | |
tree | a877b52a0c2fad35ed726167b7f5e32b2afc0329 /lib/snmp/src/agent/snmp_target_mib.erl | |
parent | b8d6efd6e31205254b9c9bfbf941254ce49bf056 (diff) | |
parent | d25cb373c7046eeadce5fffe7ab8301d8c03d647 (diff) | |
download | otp-805e559417c2364ec27c212a49a23a48e2a97da4.tar.gz otp-805e559417c2364ec27c212a49a23a48e2a97da4.tar.bz2 otp-805e559417c2364ec27c212a49a23a48e2a97da4.zip |
Merge branch 'maint'
Diffstat (limited to 'lib/snmp/src/agent/snmp_target_mib.erl')
-rw-r--r-- | lib/snmp/src/agent/snmp_target_mib.erl | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/snmp/src/agent/snmp_target_mib.erl b/lib/snmp/src/agent/snmp_target_mib.erl index a45db89c09..b01d536caa 100644 --- a/lib/snmp/src/agent/snmp_target_mib.erl +++ b/lib/snmp/src/agent/snmp_target_mib.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1998-2011. All Rights Reserved. +%% Copyright Ericsson AB 1998-2012. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -132,12 +132,12 @@ do_reconfigure(Dir) -> read_target_config_files(Dir) -> - ?vdebug("check target address config file",[]), - TAGen = fun(_D) -> ok end, + ?vdebug("check target address and parameter config file(s)",[]), + TAGen = fun(_D, _Reason) -> ok end, TAFilter = fun(Addr) -> Addr end, TACheck = fun(Entry) -> check_target_addr(Entry) end, - TPGen = fun(_D) -> ok end, + TPGen = fun(_D, _Reason) -> ok end, TPFilter = fun(Params) -> Params end, TPCheck = fun(Entry) -> check_target_params(Entry) end, |