diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-02 17:21:47 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-04-07 13:30:31 +0200 |
commit | 69e95531f88f89c793ec383139bb093f0c979596 (patch) | |
tree | dbf88edab2861cbf11bdc17f0098c03c2bb315e5 /lib/private/files/stream | |
parent | ba9a797eaad9aaeeed7960f03f40593a84096512 (diff) | |
download | nextcloud-server-69e95531f88f89c793ec383139bb093f0c979596.tar.gz nextcloud-server-69e95531f88f89c793ec383139bb093f0c979596.zip |
comment change as it broke unit tests
Diffstat (limited to 'lib/private/files/stream')
-rw-r--r-- | lib/private/files/stream/encryption.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/files/stream/encryption.php b/lib/private/files/stream/encryption.php index 9ef666d78ed..b4e06c99943 100644 --- a/lib/private/files/stream/encryption.php +++ b/lib/private/files/stream/encryption.php @@ -252,7 +252,7 @@ class Encryption extends Wrapper { parent::stream_read($this->util->getHeaderSize()); } - $count = min($count, $this->unencryptedSize - $this->position); +// $count = min($count, $this->unencryptedSize - $this->position); while ($count > 0) { $remainingLength = $count; // update the cache of the current block |