Re: [libvirt] [PATCH v2 5/6] virt-admin: Fix two error messages

2018-07-19 Thread John Ferlan



On 07/03/2018 07:37 AM, Marc Hartmayer wrote:
> Signed-off-by: Marc Hartmayer 
> Reviewed-by: Boris Fiuczynski 
> ---
>  tools/virt-admin.c | 5 +++--
>  1 file changed, 3 insertions(+), 2 deletions(-)
> 

Reviewed-by: John Ferlan 

John

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list


[libvirt] [PATCH v2 5/6] virt-admin: Fix two error messages

2018-07-03 Thread Marc Hartmayer
Signed-off-by: Marc Hartmayer 
Reviewed-by: Boris Fiuczynski 
---
 tools/virt-admin.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/tools/virt-admin.c b/tools/virt-admin.c
index c86b5763a73c..107a1d870df5 100644
--- a/tools/virt-admin.c
+++ b/tools/virt-admin.c
@@ -552,7 +552,8 @@ cmdSrvThreadpoolSet(vshControl *ctl, const vshCmd *cmd)
   VIR_THREADPOOL_WORKERS_MAX, ) &&
 virTypedParamsGetUInt(params, nparams,
   VIR_THREADPOOL_WORKERS_MIN, ) && min > max) {
-vshError(ctl, "%s", _("--min-workers must be less than 
--max-workers"));
+vshError(ctl, "%s", _("--min-workers must be less than or equal to "
+  "--max-workers"));
 goto cleanup;
 }
 
@@ -952,7 +953,7 @@ cmdSrvClientsSet(vshControl *ctl, const vshCmd *cmd)
 virTypedParamsGetUInt(params, nparams,
   VIR_SERVER_CLIENTS_UNAUTH_MAX, _max) &&
 unauth_max > max) {
-vshError(ctl, "%s", _("--max-unauth-clients must be less than "
+vshError(ctl, "%s", _("--max-unauth-clients must be less than or equal 
to "
   "--max-clients"));
 goto cleanup;
 }
-- 
2.13.4

--
libvir-list mailing list
libvir-list@redhat.com
https://www.redhat.com/mailman/listinfo/libvir-list