Checkin fix: IO::File exports everything we need from Fcntl, so there's no need to use Fcntl--it just causes errors. Also fixing a small typo that made docs/xml have the wrong permissions.

This commit is contained in:
mkanat%bugzilla.org 2006-07-31 23:49:53 +00:00
Родитель 40b3878663
Коммит a74bfcec27
2 изменённых файлов: 1 добавлений и 3 удалений

Просмотреть файл

@ -29,7 +29,6 @@ use strict;
use Bugzilla::Constants;
use Bugzilla::Install::Localconfig;
use Fcntl;
use File::Find;
use IO::File;
use POSIX ();
@ -161,7 +160,7 @@ sub FILESYSTEM {
dirs => $ws_dir_readable },
'docs/images' => { files => $ws_readable,
dirs => $ws_dir_readable },
'docs/xml' => { files => $owner_readable,
'docs/xml' => { files => $owner_dir_readable,
dirs => $owner_readable },
);

Просмотреть файл

@ -29,7 +29,6 @@ use strict;
use Bugzilla::Constants;
use Data::Dumper;
use Fcntl qw(SEEK_END);
use IO::File;
use Safe;