make_lockfile: don't do inode checking on windows
This commit is contained in:
parent
da8d534ac1
commit
1fcebfb3c7
|
@ -995,8 +995,12 @@
|
||||||
$stat_h = fstat($fp);
|
$stat_h = fstat($fp);
|
||||||
$stat_f = stat(LOCK_DIRECTORY . "/$filename");
|
$stat_f = stat(LOCK_DIRECTORY . "/$filename");
|
||||||
|
|
||||||
if ($stat_h["ino"] != $stat_f["ino"] || $stat_h["dev"] != $stat_f["dev"]) {
|
if (strtoupper(substr(PHP_OS, 0, 3)) !== 'WIN') {
|
||||||
return false;
|
if ($stat_h["ino"] != $stat_f["ino"] ||
|
||||||
|
$stat_h["dev"] != $stat_f["dev"]) {
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (function_exists('posix_getpid')) {
|
if (function_exists('posix_getpid')) {
|
||||||
|
|
Loading…
Reference in New Issue