mirror of
https://github.com/keepassxreboot/keepassxc.git
synced 2025-04-06 14:07:38 +03:00
SSH Agent: Show error messages if something fails
This commit is contained in:
parent
4ce0005711
commit
084758908a
5 changed files with 69 additions and 13 deletions
|
@ -485,7 +485,10 @@ void EditEntryWidget::addKeyToAgent()
|
|||
lifetime = m_sshAgentUi->lifetimeSpinBox->value();
|
||||
}
|
||||
|
||||
SSHAgent::instance()->addIdentity(key, lifetime, confirm);
|
||||
if (!SSHAgent::instance()->addIdentity(key, lifetime, confirm)) {
|
||||
showMessage(SSHAgent::instance()->errorString(), MessageWidget::Error);
|
||||
return;
|
||||
}
|
||||
|
||||
if (m_sshAgentUi->removeKeyFromAgentCheckBox->isChecked()) {
|
||||
SSHAgent::instance()->removeIdentityAtLock(key, m_entry->uuid());
|
||||
|
@ -496,8 +499,13 @@ void EditEntryWidget::removeKeyFromAgent()
|
|||
{
|
||||
OpenSSHKey key;
|
||||
|
||||
if (getOpenSSHKey(key)) {
|
||||
SSHAgent::instance()->removeIdentity(key);
|
||||
if (!getOpenSSHKey(key)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!SSHAgent::instance()->removeIdentity(key)) {
|
||||
showMessage(SSHAgent::instance()->errorString(), MessageWidget::Error);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue