mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
remote: fix typo in error message string
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
This commit is contained in:
parent
8419dd3b69
commit
b07a1f40c7
@ -7332,7 +7332,7 @@ remoteDispatchDomainAuthorizedSshKeysGet(virNetServer *server G_GNUC_UNUSED,
|
||||
|
||||
if (nkeys > REMOTE_DOMAIN_AUTHORIZED_SSH_KEYS_MAX) {
|
||||
virReportError(VIR_ERR_INTERNAL_ERROR,
|
||||
_("Number of keys %d, which exceeds max liit: %d"),
|
||||
_("Number of keys %d, which exceeds max limit: %d"),
|
||||
nkeys, REMOTE_DOMAIN_AUTHORIZED_SSH_KEYS_MAX);
|
||||
goto cleanup;
|
||||
}
|
||||
@ -7369,7 +7369,7 @@ remoteDispatchDomainAuthorizedSshKeysSet(virNetServer *server G_GNUC_UNUSED,
|
||||
|
||||
if (args->keys.keys_len > REMOTE_DOMAIN_AUTHORIZED_SSH_KEYS_MAX) {
|
||||
virReportError(VIR_ERR_INTERNAL_ERROR,
|
||||
_("Number of keys %d, which exceeds max liit: %d"),
|
||||
_("Number of keys %d, which exceeds max limit: %d"),
|
||||
args->keys.keys_len, REMOTE_DOMAIN_AUTHORIZED_SSH_KEYS_MAX);
|
||||
goto cleanup;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user