[libvirt] [PATCH 1/4] virlog: Fix a typo in virLogParseFilter's error msg

Erik Skultety eskultet at redhat.com
Tue Apr 3 08:45:46 UTC 2018


This was some copy-paste leftover.

Signed-off-by: Erik Skultety <eskultet at redhat.com>
---
 src/util/virlog.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/util/virlog.c b/src/util/virlog.c
index dd927f0ba..5810643e1 100644
--- a/src/util/virlog.c
+++ b/src/util/virlog.c
@@ -1699,7 +1699,7 @@ virLogParseFilter(const char *src)
     if (virStrToLong_uip(tokens[0], NULL, 10, &prio) < 0 ||
         (prio < VIR_LOG_DEBUG) || (prio > VIR_LOG_ERROR)) {
         virReportError(VIR_ERR_INVALID_ARG,
-                       _("Invalid priority '%s' for output '%s'"),
+                       _("Invalid priority '%s' for filter '%s'"),
                        tokens[0], src);
         goto cleanup;
     }
-- 
2.14.3




More information about the libvir-list mailing list