diff options
author | Micael Karlberg <[email protected]> | 2012-01-11 17:56:29 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2012-01-12 12:13:18 +0100 |
commit | c2de50f0acc5f30579d0ca0a03cbaf42847dfa9e (patch) | |
tree | f567b24dea37e0a9b842a8bb2b81f0aae6fddf94 /lib/snmp/src/agent/snmpa_agent.erl | |
parent | ae28d8822e0d0725c23483662d82e6986e5cefa5 (diff) | |
download | otp-c2de50f0acc5f30579d0ca0a03cbaf42847dfa9e.tar.gz otp-c2de50f0acc5f30579d0ca0a03cbaf42847dfa9e.tar.bz2 otp-c2de50f0acc5f30579d0ca0a03cbaf42847dfa9e.zip |
[snmp/agent] Use unique temporary file name during vacm table dumnping
Removed the use synchronization mechanism during vacm table dumping.
This could not be placed in the master agent since it was sometimes
used from the master agent. Also is was credated and used from the
top agent supervisor, befor the master agent process was created...
OTP-9851
Diffstat (limited to 'lib/snmp/src/agent/snmpa_agent.erl')
-rw-r--r-- | lib/snmp/src/agent/snmpa_agent.erl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/snmp/src/agent/snmpa_agent.erl b/lib/snmp/src/agent/snmpa_agent.erl index b78f520c50..5db3eab012 100644 --- a/lib/snmp/src/agent/snmpa_agent.erl +++ b/lib/snmp/src/agent/snmpa_agent.erl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1996-2011. All Rights Reserved. +%% Copyright Ericsson AB 1996-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 @@ -4081,7 +4081,7 @@ handle_serializer_down(Mon, Tag) -> %% ------------------------------------------------------------------------ -agent_info(#state{worker = W, set_worker = SW}) -> +agent_info(#state{worker = W, set_worker = SW}) -> case (catch get_agent_info(W, SW)) of Info when is_list(Info) -> Info; |