diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2002-06-19 15:52:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2002-06-19 15:52:50 +0000 |
commit | 8066ef5496684f784bb4468bcce661dadc629dd4 (patch) | |
tree | 452bc2d897cd4a5654d14be99477918123a69d21 /perl-install | |
parent | 7e0fa5c180eeb44c6674efa008cc8cf69af15df2 (diff) | |
download | drakx-8066ef5496684f784bb4468bcce661dadc629dd4.tar drakx-8066ef5496684f784bb4468bcce661dadc629dd4.tar.gz drakx-8066ef5496684f784bb4468bcce661dadc629dd4.tar.bz2 drakx-8066ef5496684f784bb4468bcce661dadc629dd4.tar.xz drakx-8066ef5496684f784bb4468bcce661dadc629dd4.zip |
*** empty log message ***
Diffstat (limited to 'perl-install')
-rwxr-xr-x | perl-install/standalone/fileshareset | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/standalone/fileshareset b/perl-install/standalone/fileshareset index 75bbacca6..f5390a382 100755 --- a/perl-install/standalone/fileshareset +++ b/perl-install/standalone/fileshareset @@ -126,7 +126,7 @@ package authorisation; sub read_conf { my ($exclusive_lock) = @_; open F_lock, $authorisation_file; # don't care if it's missing - flock(F_lock, $exclusive_lock ? 2 : 1) or die "can't lock $authorisation_file"; + flock(F_lock, $exclusive_lock ? 2 : 1) or die "can't lock"; my %conf; foreach (<F_lock>) { s/#.*//; # remove comments |