mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-22 05:35:25 +00:00
rpc: Fix error message in virNetServerSetClientLimits
Commitf007940cb2
tried to change the error message so that it is unified later in35afa1d2d6
, but various rewrites missed this particular error message which does not make sense. Fix it so that it is the same as the other two messages checking the same thing in this file. Resolves: https://bugzilla.redhat.com/show_bug.cgi?id=2033879 Signed-off-by: Martin Kletzander <mkletzan@redhat.com> Reviewed-by: Ján Tomko <jtomko@redhat.com>
This commit is contained in:
parent
5764930463
commit
1e2605c934
@ -1127,9 +1127,8 @@ virNetServerSetClientLimits(virNetServer *srv,
|
||||
|
||||
if (max < max_unauth) {
|
||||
virReportError(VIR_ERR_INVALID_ARG, "%s",
|
||||
_("The overall maximum number of clients waiting "
|
||||
"for authentication must not be less than the overall "
|
||||
"maximum number of clients"));
|
||||
_("The overall maximum number of clients must not be less "
|
||||
"than the number of clients waiting for authentication"));
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user