diff --git a/src/config/CryConfigConsole.cpp b/src/config/CryConfigConsole.cpp index b213a5f0..200d8ccc 100644 --- a/src/config/CryConfigConsole.cpp +++ b/src/config/CryConfigConsole.cpp @@ -19,6 +19,7 @@ namespace cryfs { string cipherName = ""; bool askAgain = true; while(askAgain) { + _console->print("\n"); int cipherIndex = _console->ask("Which block cipher do you want to use?", ciphers); cipherName = ciphers[cipherIndex]; askAgain = !_showWarningForCipherAndReturnIfOk(cipherName); diff --git a/src/config/CryConfigConsole.h b/src/config/CryConfigConsole.h index e807c8de..39e7f4ef 100644 --- a/src/config/CryConfigConsole.h +++ b/src/config/CryConfigConsole.h @@ -7,7 +7,6 @@ #include namespace cryfs { - //TODO Test class CryConfigConsole final { public: CryConfigConsole(std::shared_ptr console);