Skip to content

Commit

Permalink
Merge pull request #164 from talex5/key-mode
Browse files Browse the repository at this point in the history
Don't mark secret keys as executable
  • Loading branch information
talex5 authored Sep 20, 2019
2 parents 4db19c9 + da74f0f commit d547fe1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion unix/vat_config.ml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ let read_whole_file path =
data

let write_whole_file path data =
let oc = open_out_gen [Open_wronly; Open_creat; Open_excl; Open_binary] 0o700 path in
let oc = open_out_gen [Open_wronly; Open_creat; Open_excl; Open_binary] 0o600 path in
output_string oc data;
close_out oc

Expand Down

0 comments on commit d547fe1

Please sign in to comment.