mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-12-18 01:44:47 -05:00
Adding debug info to CLI.
Adding debug info to the CLI and the general option of the main Qt app. Also took time to: * use `EXIT_SUCCESS`/`EXIT_FAILURE` constants for main.cpp (this is what is used in `src/cli`); * fixed `m_initalized` typo; * added info on debugging mode being disabled or not; * regrouped Qt related stuff in the debug output.
This commit is contained in:
parent
76913a5dd1
commit
a58e3d5ee0
11 changed files with 126 additions and 82 deletions
|
|
@ -93,7 +93,7 @@ Random::Random(RandomBackend* backend)
|
|||
|
||||
void RandomBackendGcrypt::randomize(void* data, int len)
|
||||
{
|
||||
Q_ASSERT(Crypto::initalized());
|
||||
Q_ASSERT(Crypto::initialized());
|
||||
|
||||
gcry_randomize(data, len, GCRY_STRONG_RANDOM);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue