Use mode 0600 for history file

Fixes #2041
This commit is contained in:
ridiculousfish 2015-04-29 17:52:50 -07:00
parent f30872a7b5
commit 1242e63b6a

View file

@ -1405,7 +1405,7 @@ bool history_t::save_internal_via_rewrite()
{
/* It was successfully templated; try opening it atomically */
tmp_name = str2wcstring(narrow_str);
out_fd = wopen_cloexec(tmp_name, O_WRONLY | O_CREAT | O_EXCL | O_TRUNC, 0644);
out_fd = wopen_cloexec(tmp_name, O_WRONLY | O_CREAT | O_EXCL | O_TRUNC, 0600);
}
#endif
free(narrow_str);