aboutsummaryrefslogtreecommitdiffstats
path: root/lib/snmp/src/agent/snmpa_general_db.erl
diff options
context:
space:
mode:
authorMicael Karlberg <[email protected]>2010-03-02 10:20:45 +0000
committerErlang/OTP <[email protected]>2010-03-02 10:20:45 +0000
commit4ce2c1bd3ed90e6f1c208b4749ee33ae4ee9d723 (patch)
tree3fda614a8776f47ea56338513040bed107eb41d7 /lib/snmp/src/agent/snmpa_general_db.erl
parent72fbfd173f2f60bb1b12f826adf41ad9f8fa255e (diff)
downloadotp-4ce2c1bd3ed90e6f1c208b4749ee33ae4ee9d723.tar.gz
otp-4ce2c1bd3ed90e6f1c208b4749ee33ae4ee9d723.tar.bz2
otp-4ce2c1bd3ed90e6f1c208b4749ee33ae4ee9d723.zip
Merge from dev branch: OTP-8480 & OTP-8481.
Diffstat (limited to 'lib/snmp/src/agent/snmpa_general_db.erl')
-rw-r--r--lib/snmp/src/agent/snmpa_general_db.erl19
1 files changed, 6 insertions, 13 deletions
diff --git a/lib/snmp/src/agent/snmpa_general_db.erl b/lib/snmp/src/agent/snmpa_general_db.erl
index 795c353a9e..a06604c9cf 100644
--- a/lib/snmp/src/agent/snmpa_general_db.erl
+++ b/lib/snmp/src/agent/snmpa_general_db.erl
@@ -1,19 +1,19 @@
%%
%% %CopyrightBegin%
-%%
-%% Copyright Ericsson AB 2000-2009. All Rights Reserved.
-%%
+%%
+%% Copyright Ericsson AB 2000-2010. 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
%% compliance with the License. You should have received a copy of the
%% Erlang Public License along with this software. If not, it can be
%% retrieved online at http://www.erlang.org/.
-%%
+%%
%% Software distributed under the License is distributed on an "AS IS"
%% basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See
%% the License for the specific language governing rights and limitations
%% under the License.
-%%
+%%
%% %CopyrightEnd%
%%
-module(snmpa_general_db).
@@ -114,14 +114,7 @@ ets_open(Name, Dir, clear, Type) ->
mnesia_open({table_exist,Name},_Nodes,_RecName,_Attr,_Type,clear) ->
?vtrace("[mnesia] database ~p already exists; clear content",[Name]),
- Pattern = '_',
- F = fun() ->
- Recs = mnesia:match_object(Name,Pattern,read),
- lists:foreach(fun(Rec) ->
- mnesia:delete_object(Name,Rec,write)
- end, Recs),
- Recs
- end,
+ F = fun() -> mnesia:clear_table(Name) end,
case mnesia:transaction(F) of
{aborted,Reason} ->
exit({aborted,Reason});