From a5d8d265a2e430be316a26b6c975b14095de1b96 Mon Sep 17 00:00:00 2001 From: Matthias Bolte Date: Mon, 23 Nov 2009 23:26:31 +0100 Subject: [PATCH] esx: Don't warn about '/' paths --- src/esx/esx_driver.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/esx/esx_driver.c b/src/esx/esx_driver.c index db45b1b9d9..66fdf13a1b 100644 --- a/src/esx/esx_driver.c +++ b/src/esx/esx_driver.c @@ -293,7 +293,7 @@ esxOpen(virConnectPtr conn, virConnectAuthPtr auth, int flags ATTRIBUTE_UNUSED) return VIR_DRV_OPEN_DECLINED; } - if (conn->uri->path != NULL) { + if (conn->uri->path != NULL && STRNEQ(conn->uri->path, "/")) { VIR_WARN("Ignoring unexpected path '%s' in URI", conn->uri->path); } -- GitLab