summaryrefslogtreecommitdiffstats
path: root/urpm.pm
diff options
context:
space:
mode:
authorFrancois Pons <fpons@mandriva.com>2003-07-31 16:18:25 +0000
committerFrancois Pons <fpons@mandriva.com>2003-07-31 16:18:25 +0000
commit59becca76c57d01139fd0c459aeae2610f3e7b69 (patch)
treef3f31ba7cbd0e636956ffcd315c66f2cbbe8cbd6 /urpm.pm
parent6da3edc36cee66520c74da74618f2d254c078541 (diff)
downloadurpmi-59becca76c57d01139fd0c459aeae2610f3e7b69.tar
urpmi-59becca76c57d01139fd0c459aeae2610f3e7b69.tar.gz
urpmi-59becca76c57d01139fd0c459aeae2610f3e7b69.tar.bz2
urpmi-59becca76c57d01139fd0c459aeae2610f3e7b69.tar.xz
urpmi-59becca76c57d01139fd0c459aeae2610f3e7b69.zip
use a file opened in write mode instead of opening a directory.
Diffstat (limited to 'urpm.pm')
-rw-r--r--urpm.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/urpm.pm b/urpm.pm
index ea161860..8ca2705b 100644
--- a/urpm.pm
+++ b/urpm.pm
@@ -2475,7 +2475,7 @@ sub exlock_urpmi_db {
my ($LOCK_EX, $LOCK_NB) = (2, 4);
#- lock urpmi database, but keep lock to wait for an urpmi.update to finish.
- open LOCK_FILE, $urpm->{statedir};
+ open LOCK_FILE, ">$urpm->{statedir}/.LOCK";
flock LOCK_FILE, $LOCK_EX|$LOCK_NB or $urpm->{fatal}(7, N("urpmi database locked"));
}