mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2026-03-11 08:54:48 +00:00
SSH Agent: fix QString concatenation syntax error in error message
Removed erroneous semicolon
This commit is contained in:
parent
808ced6395
commit
a4f53473b6
1 changed files with 1 additions and 1 deletions
|
|
@ -365,7 +365,7 @@ bool SSHAgent::addIdentity(OpenSSHKey& key, const KeeAgentSettings& settings, co
|
|||
|
||||
if (responseCertificateData.length() < 1 || static_cast<quint8>(responseCertificateData[0]) != SSH_AGENT_SUCCESS) {
|
||||
m_error =
|
||||
tr("Agent refused this identity certificate. Possible reasons include:") + "\n" + tr("Invalid or empty certificate."); "\n" + tr("The key has already been added.");
|
||||
tr("Agent refused this identity certificate. Possible reasons include:") + "\n" + tr("Invalid or empty certificate.") "\n" + tr("The key has already been added.");
|
||||
|
||||
if (settings.useLifetimeConstraintWhenAdding()) {
|
||||
m_error += "\n" + tr("Restricted lifetime is not supported by the agent (check options).");
|
||||
|
|
|
|||
Loading…
Reference in a new issue