Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/keepassxreboot/keepassxc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJanek Bevendorff <janek@jbev.net>2018-01-06 19:06:51 +0300
committerJonathan White <support@dmapps.us>2018-01-13 22:24:57 +0300
commitccfd7a065c821b3075144f497ddff6b4c80598f1 (patch)
treeb5afccecd7d4aacd6f5c4decb581d64de63c6dd4 /src/streams/SymmetricCipherStream.cpp
parent54fb0d9bd331d6f5567360e772a4e1b44587a75b (diff)
Fix coding style and GUI test
Diffstat (limited to 'src/streams/SymmetricCipherStream.cpp')
-rw-r--r--src/streams/SymmetricCipherStream.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/streams/SymmetricCipherStream.cpp b/src/streams/SymmetricCipherStream.cpp
index ece2642b5..78476c618 100644
--- a/src/streams/SymmetricCipherStream.cpp
+++ b/src/streams/SymmetricCipherStream.cpp
@@ -252,7 +252,6 @@ bool SymmetricCipherStream::writeBlock(bool lastBlock)
int SymmetricCipherStream::blockSize() const {
if (m_streamCipher) {
return 1024;
- } else {
- return m_cipher->blockSize();
}
+ return m_cipher->blockSize();
}