Fixed quota wrapper to return the value from flock()

This commit is contained in:
Vincent Petry 2014-06-04 12:36:53 +02:00
parent 5adb8f0a8a
commit 3507964820
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ class Quota {
}
public function stream_lock($mode) {
flock($this->source, $mode);
return flock($this->source, $mode);
}
public function stream_flush() {