In FileBackend.pm on line 587:
$p_optional_mode ||= 0666 - umask( );
should be
$p_optional_mode ||= 0666 - (0666 & umask);
--- If your umask has a 7 in it, then it breaks the file mode calculation.
Log in to post a comment.