aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sasl/src/sasl_report_file_h.erl
diff options
context:
space:
mode:
Diffstat (limited to 'lib/sasl/src/sasl_report_file_h.erl')
-rw-r--r--lib/sasl/src/sasl_report_file_h.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/sasl/src/sasl_report_file_h.erl b/lib/sasl/src/sasl_report_file_h.erl
index f42b4b5ff2..a5bd0ac055 100644
--- a/lib/sasl/src/sasl_report_file_h.erl
+++ b/lib/sasl/src/sasl_report_file_h.erl
@@ -28,9 +28,9 @@
handle_event/2, handle_call/2, handle_info/2,
terminate/2]).
-init({File, Type}) ->
+init({File, Modes, Type}) when is_list(Modes) ->
process_flag(trap_exit, true),
- case file:open(File, [write]) of
+ case file:open(File, Modes) of
{ok,Fd} ->
{ok, {Fd, File, Type}};
What ->