From 2229290cca65d4cc0ccb8ea5dba6a6b80c6bbded Mon Sep 17 00:00:00 2001
From: Morris Jobke <hey@morrisjobke.de>
Date: Mon, 19 Jan 2015 15:57:53 +0100
Subject: [PATCH] fix typo of blog -> changed to block

* fixes #13460
---
 apps/files_encryption/exception/encryptionexception.php | 2 +-
 apps/files_encryption/lib/stream.php                    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/apps/files_encryption/exception/encryptionexception.php b/apps/files_encryption/exception/encryptionexception.php
index 2fb679e91d..24ffaff6f7 100644
--- a/apps/files_encryption/exception/encryptionexception.php
+++ b/apps/files_encryption/exception/encryptionexception.php
@@ -40,7 +40,7 @@ namespace OCA\Files_Encryption\Exception;
 class EncryptionException extends \Exception {
 	const GENERIC = 10;
 	const UNEXPECTED_END_OF_ENCRYPTION_HEADER = 20;
-	const UNEXPECTED_BLOG_SIZE = 30;
+	const UNEXPECTED_BLOCK_SIZE = 30;
 	const ENCRYPTION_HEADER_TO_LARGE = 40;
 	const UNKNOWN_CIPHER = 50;
 	const ENCRYPTION_FAILED = 60;
diff --git a/apps/files_encryption/lib/stream.php b/apps/files_encryption/lib/stream.php
index b039e808c2..644ac895a8 100644
--- a/apps/files_encryption/lib/stream.php
+++ b/apps/files_encryption/lib/stream.php
@@ -260,7 +260,7 @@ class Stream {
 
 		if ($count !== Crypt::BLOCKSIZE) {
 			\OCP\Util::writeLog('Encryption library', 'PHP "bug" 21641 no longer holds, decryption system requires refactoring', \OCP\Util::FATAL);
-			throw new EncryptionException('expected a blog size of 8192 byte', EncryptionException::UNEXPECTED_BLOG_SIZE);
+			throw new EncryptionException('expected a block size of 8192 byte', EncryptionException::UNEXPECTED_BLOCK_SIZE);
 		}
 
 		// Get the data from the file handle
-- 
GitLab